3. Software Test Report (STR)

3.1. Purpose and Scope

This document is the software test report (STR) for the ARMI framework.

3.2. Default Test Criteria

The acceptance tests for ARMI requirements are very uniform. They are all unit tests that were designed to be quite linear and straight-forward. Unless the test states otherwise, all of the following test criteria apply to each ARMI requirement test. Any deviation from these standard conditions will be documented in Section 3.3 on a test-by- test basis.

3.2.1. Testing Approach

This section defines some test attributes that all tests here have in common.

3.2.1.1. Planned Test Cases, Sequence, and Identification of Stages Required

The test cases are described in the test traceability matrix in Section 3.3. All tests must be run, and the sequence can be in any order unless otherwise specified for the test in Section 3.3.

3.2.1.2. Requirements for Testing Logic Branches

Tests are written such that each test has only one primary logic path. For tests that do not conform to only one logic path, more information will be defined in the test traceability section of the STR (Section 3.3) defining the logic flow in more detail.

3.2.1.3. Requirements for Hardware Integration

The ARMI software test will be run in modern versions Linux, Windows, and MacOS. Though for documentation brevity, we will only attach the verbose logging to this document for Linux.

3.2.1.4. Criteria for Accepting the Software

The acceptance testing must pass with satisfactory results for all tests associated with requirements in the Software Requirements Specification Document (SRSD) for the ARMI software.

3.2.1.5. Necessary Inputs to Run Test Cases

If inputs are necessary to run test cases or to return the system and data back to its original state, the processes will be documented in the test traceability matrix (TTM) in Section 3.3 (The TTM provides traceability for each test to the required criteria). Otherwise, there are no special inputs necessary to run test cases or steps to restore the system.

3.2.1.6. Required Ranges of Input Parameters for the Test Case(s)

If a test uses a range of inputs, then it will be documented in the TTM in Section 3.3. Otherwise, there are no required ranges of inputs for the test case.

3.2.1.7. Expected Results for the Test Case(s)

If a test expects a specific result, it will be documented in the TTM in Section 3.3. Otherwise, the expected test result is that no error is raised, which constitutes a passing test.

3.2.1.8. Acceptance Criteria for the Test Case(s)

The acceptance criteria for the test cases will be described. In cases where the SRSD requirement acceptance criteria is acceptable for the test case acceptance criteria, the SRSD requirement acceptance criteria can be referenced by default.

3.2.2. Test Record Criteria

The default values for the remaining 12 criteria pertaining to the test record are given in this section below. A test record will be produced after the test is run which contains pertinent information about the execution of the test. This test record will be saved as part of the software test report (STR).

3.2.2.1. Software Tested, Including System Software Used and All Versions

The ARMI version will be shown in the test record via standard output logs.

3.2.2.2. Compute Platform and Hardware Used

The test record will reference the environment upon which the test is run. See Section 3.2.1.3 for acceptable test environments.

3.2.2.3. Test Equipment and Calibrations

Not applicable for the ARMI software.

3.2.2.4. Runtime Environment Including System Software, and Language-Specific Environments

The runtime environment including the operating system, hardware, and software configuration will be specified in the test report. If necessary, more detail will be provided for individual tests which utilize custom runtime environments or have dependencies such as custom compiler options.

3.2.2.5. Date of Test

The date of the test execution is recorded in the output of the test.

3.2.2.6. Tester or Data Recorder

Acceptance tests will be run via automation.

3.2.2.7. Simulation Models Used

If simulation models beyond what is described elsewhere in the documentation (SRSD, SDID, or STR) are used the simulation models will be documented in the test record. Otherwise, this test record criterion is not applicable to the test.

3.2.2.8. Test Problems Identified During Test Planning

If specific problems such as textbooks or benchmarks are utilized for the test, then the test record will reference those problems. Otherwise, test problems are not applicable to the test record.

3.2.2.9. All Input Data and Output Results and Applicability

The input data will be recorded per Section 3.2.1.5. Output data will be provided as a pass or fail of the test as part of the test record.

3.2.2.10. Action Taken in connection with Any Deviations Noted

No actions will have been assumed to be taken based on the test other than pass or fail for the test. If there are exceptions, to this statement, they will be noted in the TTM in Section 3.3.

3.2.2.11. Person Evaluating Test Result

The reviewer of the document will evaluate the test results. Any failing unit test should result in a release failure.

3.2.2.12. Acceptability

The test record states whether the tests pass or fail.

3.3. Test Traceability Matrix

The requirements and associated tests which demonstrate acceptance of the codebase with the requirements are in the SRSD. This section contains a list of all tests and will provide information for any non-default criteria (see Section 3.2 for default criteria).

Here are some quick metrics for the requirement tests in ARMI:

  • 140 Accepted Requirements in ARMI

    • 133 Accepted Requirements with tests

    • 254 tests linked to Requirements

And here is a full listing of all the tests in ARMI, that are tied to requirements:

Test Case: Load the reactor from the database. T_ARMI_DB_TIME1
signature: test_load
requirements: R_ARMI_DB_TIME
Test Case: Write a single time step of data to the database. T_ARMI_DB_TIME0
signature: test_writeToDB
requirements: R_ARMI_DB_TIME
Test Case: Show the database is H5-formatted. T_ARMI_DB_H5
signature: test_getH5File
requirements: R_ARMI_DB_H5
Test Case: Save and retrieve settings from the database. T_ARMI_DB_CS
signature: test_readInputsFromDB
requirements: R_ARMI_DB_CS
Test Case: Save and retrieve blueprints from the database. T_ARMI_DB_BP
signature: test_readInputsFromDB
requirements: R_ARMI_DB_BP
Test Case: Runs can be restarted from a snapshot. T_ARMI_SNAPSHOT_RESTART
signature: test_prepRestartRun
Test Case: Validate that we can directly write system attributes to a database file. T_ARMI_DB_QA0
signature: test_writeSystemAttributes
requirements: R_ARMI_DB_QA
Test Case: Validate that databases have system attributes written to them during the usual workflow. T_ARMI_DB_QA1
signature: test_metaData_endSuccessfully
requirements: R_ARMI_DB_QA
Test Case: Demonstrate that a parameter stored at differing time nodes can be recovered. T_ARMI_HIST_TRACK0
signature: test_calcMGFluence
requirements: R_ARMI_HIST_TRACK
Test Case: Demonstrate that various parameters stored at differing time nodes can be recovered. T_ARMI_HIST_TRACK1
signature: test_historyParameters
requirements: R_ARMI_HIST_TRACK
Test Case: Allow extra data to be saved from a run, at specified time nodes. T_ARMI_SNAPSHOT0
signature: test_activeateDefaultSnapshots_30cycles2BurnSteps
requirements: R_ARMI_SNAPSHOT
Test Case: Allow extra data to be saved from a run, at specified time nodes. T_ARMI_SNAPSHOT1
signature: test_activeateDefaultSnapshots_17cycles5BurnSteps
requirements: R_ARMI_SNAPSHOT
Test Case: There is a generic mechanism to allow simulation runs. T_ARMI_CASE
signature: test_run
requirements: R_ARMI_CASE
Test Case: Test case settings object is created, settings can be edited, and case can run. T_ARMI_SETTING
signature: test_run
requirements: R_ARMI_SETTING
Test Case: Check the ARMI inputs for consistency and validity. T_ARMI_CASE_CHECK
signature: test_checkInputs
requirements: R_ARMI_CASE_CHECK
Test Case: Dependence allows for one case to start after the completion of another. T_ARMI_CASE_SUITE
signature: test_explicitDependency
requirements: R_ARMI_CASE_SUITE
Test Case: A generic mechanism to allow users to modify user inputs in cases. T_ARMI_CASE_MOD0
signature: test_buildSuite
requirements: R_ARMI_CASE_MOD
Test Case: A generic mechanism to allow users to modify user inputs in cases. T_ARMI_CASE_MOD1
signature: test_buildSuite
requirements: R_ARMI_CASE_MOD
Test Case: A generic mechanism to allow users to modify user inputs in cases. T_ARMI_CASE_MOD2
signature: test_buildSuite
requirements: R_ARMI_CASE_MOD
Test Case: Test initialization of many basic CLIs. T_ARMI_CLI_GEN0
signature: test_entryPointInitialization
requirements: R_ARMI_CLI_GEN
Test Case: A working CLI child class, to validate inputs. T_ARMI_CLI_GEN1
signature: test_checkInputEntryPointInvoke
requirements: R_ARMI_CLI_GEN
Test Case: A working CLI child class, to clone a run. T_ARMI_CLI_GEN2
signature: test_cloneArmiRunCommandBatchInvokeMedium
requirements: R_ARMI_CLI_GEN
Test Case: The ARMI CLI can be correctly initialized. T_ARMI_CLI_CS0
signature: test_listCommand
requirements: R_ARMI_CLI_CS
Test Case: The ARMI CLI's basic "--version" functionality works. T_ARMI_CLI_CS1
signature: test_showVersion
requirements: R_ARMI_CLI_CS
Test Case: The ARMI CLI's import run() method works. T_ARMI_CLI_CS2
signature: test_run
requirements: R_ARMI_CLI_CS
Test Case: There is a base class for fluid materials. T_ARMI_MAT_FLUID1
signature: Test_Air
requirements: R_ARMI_MAT_FLUID
Test Case: Materials can be grabbed from a list of namespaces. T_ARMI_MAT_NAMESPACE0
signature: test_findMaterial
requirements: R_ARMI_MAT_NAMESPACE
Test Case: Material can be found in defined packages. T_ARMI_MAT_NAMESPACE1
signature: test_namespacing
requirements: R_ARMI_MAT_NAMESPACE
Test Case: Material namespaces register materials with an order of priority. T_ARMI_MAT_ORDER
signature: test_namespacing
requirements: R_ARMI_MAT_ORDER
Test Case: Materials shall calc mass fracs at init. T_ARMI_MAT_FRACS4
signature: test_duplicate
requirements: R_ARMI_MAT_FRACS
Test Case: The materials generate nuclide mass fractions. T_ARMI_MAT_FRACS0
signature: test_setDefaultMassFracs
requirements: R_ARMI_MAT_FRACS
Test Case: The materials generate nuclide mass fractions. T_ARMI_MAT_FRACS1
signature: test_setDefaultMassFracs
requirements: R_ARMI_MAT_FRACS
Test Case: Fluid materials do not linearly expand, at any temperature. T_ARMI_MAT_FLUID2
signature: test_linearExpansion
requirements: R_ARMI_MAT_FLUID
Test Case: The materials generate nuclide mass fractions. T_ARMI_MAT_FRACS2
signature: test_setDefaultMassFracs
requirements: R_ARMI_MAT_FRACS
Test Case: The materials generate nuclide mass fractions. T_ARMI_MAT_FRACS3
signature: test_setDefaultMassFracs
requirements: R_ARMI_MAT_FRACS
Test Case: Test the material base class has temp-dependent thermal conductivity curves. T_ARMI_MAT_PROPERTIES0
signature: test_isPicklable
requirements: R_ARMI_MAT_PROPERTIES
Test Case: Materials shall calc mass fracs at init. T_ARMI_MAT_FRACS5
signature: test_duplicate
requirements: R_ARMI_MAT_FRACS
Test Case: Test the material base class has temp-dependent density. T_ARMI_MAT_PROPERTIES2
signature: test_densityKgM3
requirements: R_ARMI_MAT_PROPERTIES
Test Case: Test the material base class has temp-dependent 2D density. T_ARMI_MAT_PROPERTIES3
signature: test_pseudoDensityKgM3
requirements: R_ARMI_MAT_PROPERTIES
Test Case: Test the material base class has temp-dependent density. T_ARMI_MAT_PROPERTIES1
signature: test_density
requirements: R_ARMI_MAT_PROPERTIES
Test Case: There is a base class for fluid materials. T_ARMI_MAT_FLUID0
signature: test_water_at_freezing
requirements: R_ARMI_MAT_FLUID
Test Case: Get elements by name. T_ARMI_ND_ELEMENTS0
signature: test_element_elementByNameReturnsElement
requirements: R_ARMI_ND_ELEMENTS
Test Case: Get elements by Z. T_ARMI_ND_ELEMENTS1
signature: test_element_elementByZReturnsElement
requirements: R_ARMI_ND_ELEMENTS
Test Case: Get elements by symbol. T_ARMI_ND_ELEMENTS2
signature: test_element_elementBySymbolReturnsElement
requirements: R_ARMI_ND_ELEMENTS
Test Case: Get elements by Z to show if they are naturally occurring. T_ARMI_ND_ELEMENTS3
signature: test_element_isNaturallyOccurring
requirements: R_ARMI_ND_ELEMENTS
Test Case: Get elements by Z to show if they are heavy metals. T_ARMI_ND_ELEMENTS4
signature: test_isHeavyMetal
requirements: R_ARMI_ND_ELEMENTS
Test Case: Validate the name, label, and DB name are accessible for nuclides. T_ARMI_ND_ISOTOPES0
signature: test_nucBases_labelAndNameCollsionsAreForSameNuclide
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test that nuclide data was read from file instead of code. T_ARMI_ND_DATA0
signature: test_nucBases_imposeBurn_nuSF
requirements: R_ARMI_ND_DATA
Test Case: Specifically test for Am242 and Am242g because it is a special case. T_ARMI_ND_ISOTOPES1
signature: test_nucBases_Am242m
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test get nuclides by name. T_ARMI_ND_ISOTOPES2
signature: test_getEndfMatNum
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test that MCC v2 ENDF/B-V.2 IDs can be queried by nuclides. T_ARMI_ND_ISOTOPES3
signature: test_loadMcc2Data
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test that MCC v3 ENDF/B-VII.0 IDs can be queried by nuclides. T_ARMI_ND_ISOTOPES4
signature: test_loadMcc3EndfVII0Data
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test the MCC ENDF/B-VII.0 nuclide data that was read from file instead of code. T_ARMI_ND_DATA1
signature: test_loadMcc3EndfVII0Data
requirements: R_ARMI_ND_DATA
Test Case: Test that MCC v3 ENDF/B-VII.1 IDs can be queried by nuclides. T_ARMI_ND_ISOTOPES6
signature: test_loadMcc3EndfVII1Data
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test the MCC ENDF/B-VII.1 nuclide data that was read from file instead of code. T_ARMI_ND_DATA2
signature: test_loadMcc3EndfVII1Data
requirements: R_ARMI_ND_DATA
Test Case: Query the AAAZZS IDs can be retrieved for nuclides. T_ARMI_ND_ISOTOPES5
signature: test_AAAZZZSNameGenerator
requirements: R_ARMI_ND_ISOTOPES
Test Case: Test reading DIF3D files. T_ARMI_NUCDATA_DIF3D0
signature: test__rwFileID
requirements: R_ARMI_NUCDATA_DIF3D
Test Case: Test reading DIF3D files. T_ARMI_NUCDATA_DIF3D1
signature: test__rwFile1DRecord
requirements: R_ARMI_NUCDATA_DIF3D
Test Case: Test writing DIF3D files. T_ARMI_NUCDATA_DIF3D2
signature: test_writeBinary
requirements: R_ARMI_NUCDATA_DIF3D
Test Case: Test reading DLAYXS files. T_ARMI_NUCDATA_DLAYXS0
signature: test_decayConstants
requirements: R_ARMI_NUCDATA_DLAYXS
Test Case: Test writing DLAYXS files. T_ARMI_NUCDATA_DLAYXS1
signature: test_writeBinary_mcc3
requirements: R_ARMI_NUCDATA_DLAYXS
Test Case: Test reading GAMISO files. T_ARMI_NUCDATA_GAMISO0
signature: test_compare
requirements: R_ARMI_NUCDATA_GAMISO
Test Case: Test writing GAMISO files. T_ARMI_NUCDATA_GAMISO1
signature: test_writeBinary
requirements: R_ARMI_NUCDATA_GAMISO
Test Case: Test reading GEODST files. T_ARMI_NUCDATA_GEODST0
signature: test_readGeodst
requirements: R_ARMI_NUCDATA_GEODST
Test Case: Test writing GEODST files. T_ARMI_NUCDATA_GEODST1
signature: test_writeGeodst
requirements: R_ARMI_NUCDATA_GEODST
Test Case: Write ISOTSX binary files. T_ARMI_NUCDATA_ISOTXS0
signature: test_writeBinary
requirements: R_ARMI_NUCDATA_ISOTXS
Test Case: Read ISOTXS files. T_ARMI_NUCDATA_ISOTXS1
signature: test_mergeMccV2FilesRemovesTheFileWideChi
requirements: R_ARMI_NUCDATA_ISOTXS
Test Case: Test reading and writing PMATRIX files. T_ARMI_NUCDATA_PMATRX
signature: test_writtenIsIdenticalToOriginal
requirements: R_ARMI_NUCDATA_PMATRX
Test Case: Compute macroscopic cross sections from microscopic cross sections and number densities. T_ARMI_NUCDATA_MACRO
signature: test_createMacrosFromMicros
requirements: R_ARMI_NUCDATA_MACRO
Test Case: The Operator includes input data and the reactor data model. T_ARMI_OPERATOR_COMM
signature: test_operatorData
requirements: R_ARMI_OPERATOR_COMM
Test Case: An ordered list of interfaces are run at each time step. T_ARMI_OPERATOR_INTERFACES
signature: test_orderedInterfaces
Test Case: Interfaces are run at BOC, EOC, and at time points between. T_ARMI_INTERFACE
signature: test_orderedInterfaces
requirements: R_ARMI_INTERFACE
Test Case: When users set the time discretization, it is enforced. T_ARMI_FW_HISTORY2
signature: test_orderedInterfaces
requirements: R_ARMI_FW_HISTORY
Test Case: Create an operator from settings. T_ARMI_OPERATOR_SETTINGS
signature: test_createOperator
Test Case: Users can control time discretization of the simulation through settings. T_ARMI_FW_HISTORY0
signature: test_getStepLengths
requirements: R_ARMI_FW_HISTORY
Test Case: The tight coupling logic can fail if there is no convergence. T_ARMI_OPERATOR_PHYSICS0
signature: test_performTightCoupling_notConverged
Test Case: Test the powerFractions are retrieved correctly for multiple cycles. T_ARMI_SETTINGS_POWER1
signature: test_getPowerFractions
requirements: R_ARMI_SETTINGS_POWER
Test Case: Users can manually control time discretization of the simulation. T_ARMI_FW_HISTORY1
signature: test_getStepLengths
requirements: R_ARMI_FW_HISTORY
Test Case: Test the burnup equalizing rotation algorithm. T_ARMI_ROTATE_HEX_BURNUP
signature: test_oppositeRotation
acceptance_criteria: After rotating a hexagonal assembly, confirm the pin with the highest burnup is in the same sector as pin with the lowest power in the high burnup pin's ring.
Test Case: Execute user-defined shuffle operations based on a reactor model. T_ARMI_SHUFFLE
signature: test_repeatShuffles
requirements: R_ARMI_SHUFFLE
Test Case: User-specified blocks can remain in place during shuffling T_ARMI_SHUFFLE_STATIONARY0
signature: test_transferStationaryBlocks
Test Case: User-specified blocks can remain in place during shuffling T_ARMI_SHUFFLE_STATIONARY1
signature: test_dischargeSwap
Test Case: Tests GlobalFluxOptions. T_ARMI_FLUX_OPTIONS_CS
signature: test_readFromSettings
requirements: R_ARMI_FLUX_OPTIONS
Test Case: Tests GlobalFluxOptions. T_ARMI_FLUX_OPTIONS_R
signature: test_readFromReactors
requirements: R_ARMI_FLUX_OPTIONS
Test Case: Compute DPA rates. T_ARMI_FLUX_DPA
signature: test_computeDpaRate
requirements: R_ARMI_FLUX_DPA
Test Case: Block-wise power is consistent with reactor data model power. T_ARMI_FLUX_CHECK_POWER
signature: test_checkEnergyBalance
Test Case: Run the global flux interface to check that the mesh converter is called before the neutronics solver. T_ARMI_FLUX_GEOM_TRANSFORM_ORDER
signature: test_executerInteraction
Test Case: Run the global flux interface to show the geometry converter is called when the nonuniform mesh option is used. T_ARMI_FLUX_GEOM_TRANSFORM_CONV
signature: test_executerInteractionNonUniformAssems
Test Case: Return the reaction rates for a given ArmiObject. T_ARMI_FLUX_RX_RATES
signature: test_calcReactionRates
requirements: R_ARMI_FLUX_RX_RATES
Test Case: Create representative blocks using a volume-weighted averaging. T_ARMI_XSGM_CREATE_REPR_BLOCKS0
signature: test_createRepresentativeBlock
Test Case: Create representative blocks using custom cylindrical averaging. T_ARMI_XSGM_CREATE_REPR_BLOCKS1
signature: test_ComponentAverage1DCylinder
Test Case: Build representative blocks for a reactor. T_ARMI_XSGM_CREATE_XS_GROUPS
signature: test_getRepresentativeBlocks
Test Case: The cross-section group manager frequency depends on the LPI frequency at BOL. T_ARMI_XSGM_FREQ0
signature: test_interactBOL
requirements: R_ARMI_XSGM_FREQ
Test Case: The cross-section group manager frequency depends on the LPI frequency at BOC. T_ARMI_XSGM_FREQ1
signature: test_interactBOC
requirements: R_ARMI_XSGM_FREQ
Test Case: The cross-section group manager frequency depends on the LPI frequency at every time node. T_ARMI_XSGM_FREQ2
signature: test_interactEveryNode
requirements: R_ARMI_XSGM_FREQ
Test Case: The cross-section group manager frequency depends on the LPI frequency during first coupled iteration. T_ARMI_XSGM_FREQ3
signature: test_interactFirstCoupledIteration
requirements: R_ARMI_XSGM_FREQ
Test Case: The cross-section group manager frequency depends on the LPI frequency during coupling. T_ARMI_XSGM_FREQ4
signature: test_interactAllCoupled
requirements: R_ARMI_XSGM_FREQ
Test Case: Test that the cross-section group manager is run before the cross sections are calculated. T_ARMI_XSGM_FREQ5
signature: test_xsgmIsRunBeforeXS
requirements: R_ARMI_XSGM_FREQ
Test Case: Generate cross section table. T_ARMI_DEPL_TABLES
signature: test_makeTable
requirements: R_ARMI_DEPL_TABLES
Test Case: ARMI provides a base class to deplete isotopes. T_ARMI_DEPL_ABC
signature: test_isotopicDepletionInterface
requirements: R_ARMI_DEPL_ABC
Test Case: Check the neutron energy group bounds logic fails correctly for the wrong structure. T_ARMI_EG_NE0
signature: test_invalidGroupStructureType
requirements: R_ARMI_EG_NE
Test Case: Check the neutron energy group bounds for a given group structure. T_ARMI_EG_NE1
signature: test_consistenciesBetweenGroupStructureAndGroupStructureType
requirements: R_ARMI_EG_NE
Test Case: Return the energy group index which contains a given energy threshold. T_ARMI_EG_FE
signature: test_getFastFluxGroupCutoff
requirements: R_ARMI_EG_FE
Test Case: Build macroscopic cross sections for all blocks in the reactor. T_ARMI_MACRO_XS
signature: test_macroXSGenerationInterfaceBasics
requirements: R_ARMI_MACRO_XS
Test Case: Run an external executable with an Executer. T_ARMI_EX
signature: test_runExternalExecutable
requirements: R_ARMI_EX
Test Case: Create assembly from blueprint file. T_ARMI_BP_ASSEM
signature: test_checkParamConsistency
requirements: R_ARMI_BP_ASSEM
Test Case: Create block with blueprint file. T_ARMI_BP_BLOCK
signature: test_blockLattice
requirements: R_ARMI_BP_BLOCK
Test Case: Nuc flags can define depletable objects. T_ARMI_BP_NUC_FLAGS0
signature: test_explicitFlags
requirements: R_ARMI_BP_NUC_FLAGS
Test Case: Validates the round trip of reading and writing blueprints. T_ARMI_BP_TO_DB1
signature: test_roundTripCompleteBP
requirements: R_ARMI_BP_TO_DB
Test Case: A component can be correctly created from a blueprint file. T_ARMI_BP_COMP
signature: test_componentDimensions
requirements: R_ARMI_BP_COMP
Test Case: Users marking components as depletable will affect number densities. T_ARMI_BP_NUC_FLAGS1
signature: test_traceNuclides
requirements: R_ARMI_BP_NUC_FLAGS
Test Case: Test that custom isotopics can be specified via mass fractions. T_ARMI_MAT_USER_INPUT3
signature: test_massFractionsAreApplied
requirements: R_ARMI_MAT_USER_INPUT
Test Case: Test that custom isotopics can be specified via number fractions. T_ARMI_MAT_USER_INPUT4
signature: test_numberFractions
requirements: R_ARMI_MAT_USER_INPUT
Test Case: Test that custom isotopics can be specified via number fractions. T_ARMI_MAT_USER_INPUT5
signature: test_numberDensities
requirements: R_ARMI_MAT_USER_INPUT
Test Case: Grid blueprints can be written to disk. T_ARMI_BP_TO_DB0
signature: test_roundTrip
requirements: R_ARMI_BP_TO_DB
Test Case: Define a lattice map in reactor core. T_ARMI_BP_GRID1
signature: test_tinyMap
requirements: R_ARMI_BP_GRID
Test Case: Define a lattice map in reactor core. T_ARMI_BP_GRID0
signature: test_simpleReadLatticeMap
requirements: R_ARMI_BP_GRID
Test Case: A material modification can be applied to all the components in an assembly. T_ARMI_MAT_USER_INPUT0
signature: test_u235_wt_frac_modification
requirements: R_ARMI_MAT_USER_INPUT
Test Case: A material modification can be applied to one component in an assembly. T_ARMI_MAT_USER_INPUT1
signature: test_u235_wt_frac_byComponent_modification1
requirements: R_ARMI_MAT_USER_INPUT
Test Case: A material modification can be applied to multiple components in an assembly. T_ARMI_MAT_USER_INPUT2
signature: test_u235_wt_frac_byComponent_modification2
requirements: R_ARMI_MAT_USER_INPUT
Test Case: Create core and spent fuel pool with blueprint. T_ARMI_BP_SYSTEMS
signature: test_construct
requirements: R_ARMI_BP_SYSTEMS
Test Case: Create core object with blueprint. T_ARMI_BP_CORE
signature: test_construct
requirements: R_ARMI_BP_CORE
Test Case: Thermally expand and then contract to ensure original assembly is recovered. T_ARMI_AXIAL_EXP_THERM0
signature: test_thermalExpansionContractionConservation_simple
Test Case: Expand all components and then contract back to original state. T_ARMI_AXIAL_EXP_PRESC0
signature: test_prescribedExpansionContractionConservation
Test Case: Ensure the ACLP does not move during fuel-only expansion. T_ARMI_AXIAL_EXP_PRESC1
signature: test_noMovementACLP
Test Case: Ensure the component volumes are correctly updated during prescribed expansion. T_ARMI_AXIAL_EXP_PRESC2
signature: test_noMovementACLP
Test Case: Allow user-specified target axial expansion components on a given block. T_ARMI_MANUAL_TARG_COMP
signature: test_manuallySetTargetComponent
Test Case: Preserve the total height of a compatible ARMI assembly. T_ARMI_ASSEM_HEIGHT_PRES
signature: test_coldAssemblyExpansion
Test Case: Axial expansion can be prescribed in blueprints for core constuction. T_ARMI_INP_COLD_HEIGHT
signature: test_coldAssemblyExpansion
Test Case: Homogenize one component into another. T_ARMI_BLOCKCONV0
signature: test_dissolveWireIntoCoolant
requirements: R_ARMI_BLOCKCONV
Test Case: Homogenize one component into another. T_ARMI_BLOCKCONV1
signature: test_dissolveLinerIntoClad
requirements: R_ARMI_BLOCKCONV
Test Case: Convert hex blocks to cylindrical blocks. T_ARMI_BLOCKCONV_HEX_TO_CYL1
signature: test_convert
Test Case: Convert hex blocks to cylindrical blocks. T_ARMI_BLOCKCONV_HEX_TO_CYL0
signature: test_convertHexWithFuelDriver
Test Case: Convert a 3D hex reactor core to an RZ-Theta core. T_ARMI_CONV_3DHEX_TO_2DRZ
signature: test_convert
Test Case: Test adding/removing assemblies from a reactor. T_ARMI_ADD_EDGE_ASSEMS
signature: test_edgeAssemblies
Test Case: Convert a third-core to a full-core geometry and then restore it. T_ARMI_THIRD_TO_FULL_CORE0
signature: test_growToFullCoreFromThirdCore
Test Case: Produce a uniform mesh with a size no smaller than a user-specified value. T_ARMI_UMC_MIN_MESH1
signature: test_filterMesh
requirements: R_ARMI_UMC_MIN_MESH
Test Case: Produce a uniform mesh with a size no smaller than a user-specified value. T_ARMI_UMC_MIN_MESH0
signature: test_generateCommonMesh
requirements: R_ARMI_UMC_MIN_MESH
Test Case: Preserve the boundaries of fuel and control material. T_ARMI_UMC_NON_UNIFORM0
signature: test_generateCommonMesh
Test Case: Make a copy of the reactor where the new reactor core has a uniform axial mesh. T_ARMI_UMC
signature: test_convertNumberDensities
requirements: R_ARMI_UMC
Test Case: Map select parameters from composites on the new mesh to the original mesh. T_ARMI_UMC_PARAM_BACKWARD0
signature: test_applyStateToOriginal
Test Case: Return the reaction rates for a given list of ArmiObjects. T_ARMI_FLUX_RX_RATES_BY_XS_ID
signature: test_calcReactionRatesBlockList
requirements: R_ARMI_FLUX_RX_RATES
Test Case: Map select parameters from composites on the new mesh to the original mesh. T_ARMI_UMC_PARAM_BACKWARD1
signature: test_applyStateToOriginal
Test Case: Map select parameters from composites on the original mesh to the new mesh. T_ARMI_UMC_PARAM_FORWARD
signature: test_setStateFromOverlaps
Test Case: Assembly location is retrievable. T_ARMI_ASSEM_POSI0
signature: test_getLocation
requirements: R_ARMI_ASSEM_POSI
Test Case: Cartesian coordinates are retrievable. T_ARMI_ASSEM_POSI1
signature: test_carestianCoordinates
requirements: R_ARMI_ASSEM_POSI
Test Case: An assembly can be rotated about its z-axis. T_ARMI_ROTATE_HEX_ASSEM
signature: test_rotate
requirements: R_ARMI_ROTATE_HEX
Test Case: Validate child types of assembly are blocks, ordered from top to bottom. T_ARMI_ASSEM_BLOCKS
signature: test_assem_block_types
requirements: R_ARMI_ASSEM_BLOCKS
Test Case: Homogenize the compositions of a block. T_ARMI_BLOCK_HOMOG
signature: test_homogenizedMixture
requirements: R_ARMI_BLOCK_HOMOG
Test Case: Location of a block is retrievable. T_ARMI_BLOCK_POSI0
signature: test_setLocation
requirements: R_ARMI_BLOCK_POSI
Test Case: Retrieve the number of pins from various blocks. T_ARMI_BLOCK_NPINS
signature: test_getNumPins
requirements: R_ARMI_BLOCK_NPINS
Test Case: Users can create blocks that have the correct hexagonal area. T_ARMI_BLOCK_HEX0
signature: test_getArea
requirements: R_ARMI_BLOCK_HEX
Test Case: Users can create blocks with a hexagonal shape. T_ARMI_BLOCK_HEX1
signature: test_component_type
requirements: R_ARMI_BLOCK_HEX
Test Case: Coordinates of a block are queryable. T_ARMI_BLOCK_POSI1
signature: test_coords
requirements: R_ARMI_BLOCK_POSI
Test Case: Grids can handle components with multiplicity > 1. T_ARMI_GRID_MULT
signature: test_gridCreation
requirements: R_ARMI_GRID_MULT
Test Case: Example void and fuel components are initialized. T_ARMI_COMP_DEF0
signature: test_factory
requirements: R_ARMI_COMP_DEF
Test Case: Verify the parameters of an initialized component. T_ARMI_COMP_DEF1
signature: test_componentInitializationAndDuplication
requirements: R_ARMI_COMP_DEF
Test Case: Users can set Component number density. T_ARMI_COMP_NUCLIDE_FRACS0
signature: test_setNumberDensity
Test Case: Users can set Component number densities. T_ARMI_COMP_NUCLIDE_FRACS1
signature: test_setNumberDensities
Test Case: Components are made of one material. T_ARMI_COMP_1MAT0
signature: test_initializeComponentMaterial
requirements: R_ARMI_COMP_1MAT
Test Case: Components have material properties. T_ARMI_COMP_MAT
signature: test_solid_material
requirements: R_ARMI_COMP_MAT
Test Case: Retrieve a null dimension. T_ARMI_COMP_DIMS0
signature: test_getDimension
requirements: R_ARMI_COMP_DIMS
Test Case: Order components by their outermost diameter T_ARMI_COMP_ORDER
signature: test_component_less_than
requirements: R_ARMI_COMP_ORDER
Test Case: Clear cache after a dimensions updated. T_ARMI_COMP_VOL0
signature: test_volumeAfterClearCache
requirements: R_ARMI_COMP_VOL
Test Case: Compute the volume of a DerivedShape inside solid shapes. T_ARMI_COMP_FLUID
signature: test_computeVolume
requirements: R_ARMI_COMP_FLUID
Test Case: Calculate thermal expansion. T_ARMI_COMP_EXPANSION0
signature: test_getThermalExpansionFactorConservedMassByLinearExpansionPercent
requirements: R_ARMI_COMP_EXPANSION
Test Case: Retrieve a dimension at a temperature. T_ARMI_COMP_DIMS1
signature: test_getDimension
requirements: R_ARMI_COMP_DIMS
Test Case: Calculate thermal expansion. T_ARMI_COMP_EXPANSION1
signature: test_getDimension
requirements: R_ARMI_COMP_EXPANSION
Test Case: Calculate area of circle. T_ARMI_COMP_VOL1
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Show the dimensions of a liquid Component can be defined to depend on the solid Components that bound it. T_ARMI_COMP_FLUID1
signature: test_componentInteractionsLinkingByDimensions
requirements: R_ARMI_COMP_FLUID
Test Case: Calculate area of triangle. T_ARMI_COMP_VOL2
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Triangle shaped component T_ARMI_COMP_SHAPES1
signature: test_getArea
requirements: R_ARMI_COMP_SHAPES
Test Case: Rectangle shaped component T_ARMI_COMP_SHAPES2
signature: test_getBoundingCircleOuterDiameter
requirements: R_ARMI_COMP_SHAPES
Test Case: Calculate area of rectangle. T_ARMI_COMP_VOL3
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of solid rectangle. T_ARMI_COMP_VOL4
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Square shaped component T_ARMI_COMP_SHAPES3
signature: test_getBoundingCircleOuterDiameter
requirements: R_ARMI_COMP_SHAPES
Test Case: Calculate area of square. T_ARMI_COMP_VOL5
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of cube. T_ARMI_COMP_VOL6
signature: test_getVolume
requirements: R_ARMI_COMP_VOL
Test Case: Hexagon shaped component T_ARMI_COMP_SHAPES4
signature: test_getPerimeter
requirements: R_ARMI_COMP_SHAPES
Test Case: Calculate area of hexagon. T_ARMI_COMP_VOL7
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of holed hexagon. T_ARMI_COMP_VOL8
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of hex holed circle. T_ARMI_COMP_VOL9
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of holed rectangle. T_ARMI_COMP_VOL10
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate area of helix. T_ARMI_COMP_VOL11
signature: test_getArea
requirements: R_ARMI_COMP_VOL
Test Case: Calculate volume of sphere. T_ARMI_COMP_VOL12
signature: test_getVolume
requirements: R_ARMI_COMP_VOL
Test Case: Dimensions can be updated. T_ARMI_COMP_VOL13
signature: test_updateDims
requirements: R_ARMI_COMP_VOL
Test Case: Composites are part of a hierarchical model. T_ARMI_CMP0
signature: test_composite
requirements: R_ARMI_CMP
Test Case: Composites are part of a hierarchical model. T_ARMI_CMP1
signature: test_getChildren
requirements: R_ARMI_CMP
Test Case: Flags can be queried. T_ARMI_CMP_FLAG
signature: test_hasFlags
requirements: R_ARMI_CMP_FLAG
Test Case: Composites have parameter collections. T_ARMI_CMP_PARAMS0
signature: test_getMaxParam
requirements: R_ARMI_CMP_PARAMS
Test Case: Composites have parameter collections. T_ARMI_CMP_PARAMS1
signature: test_getMinParam
requirements: R_ARMI_CMP_PARAMS
Test Case: Mass of a composite is retrievable. T_ARMI_CMP_GET_MASS
signature: test_setMass
requirements: R_ARMI_CMP_GET_MASS
Test Case: Number density of composite is retrievable. T_ARMI_CMP_GET_NDENS0
signature: test_getNumberDensities
requirements: R_ARMI_CMP_GET_NDENS
Test Case: Get number densities. T_ARMI_CMP_NUC
signature: test_getNumberDensitiesWithExpandedFissionProducts
requirements: R_ARMI_CMP_NUC
Test Case: Convert flag to a string. T_ARMI_FLAG_TO_STR
signature: test_flagsToAndFromString
requirements: R_ARMI_FLAG_TO_STR
Test Case: Demonstrate that a HexBlock can be rotated in 60 degree increments, and the resultant orientation parameter reflects the current rotation. T_ARMI_ROTATE_HEX_BLOCK
signature: test_orientationVector
requirements: R_ARMI_ROTATE_HEX
Test Case: Rotating a hex block updates parameters on the boundary of the hexagon. T_ARMI_ROTATE_HEX_BOUNDARY
signature: test_rotateBoundaryParameters
requirements: R_ARMI_ROTATE_HEX
Test Case: HexBlock.getPinLocations is consistent with rotation. T_ARMI_ROTATE_HEX_PIN_LOCS
signature: test_pinRotationLocations
requirements: R_ARMI_ROTATE_HEX
Test Case: HexBlock.getPinCoordinates is consistent through rotation. T_ARMI_ROTATE_HEX_PIN_COORDS
signature: test_pinRotationCoordinates
requirements: R_ARMI_ROTATE_HEX
Test Case: Rotating a hex block updates the spatial coordinates on contained objects. T_ARMI_ROTATE_HEX_CHILD_LOCS
signature: test_updateChildLocations
requirements: R_ARMI_ROTATE_HEX
Test Case: Restrict parameters from DB write. T_ARMI_PARAM_DB
signature: test_writeSomeParamsToDB
requirements: R_ARMI_PARAM_DB
Test Case: Ensure that new parameters can be defined. T_ARMI_PARAM0
signature: test_writeSomeParamsToDB
requirements: R_ARMI_PARAM
Test Case: Custom parameter serializer T_ARMI_PARAM_SERIALIZE
signature: test_serializer_pack_unpack
Test Case: Tooling that allows a Parameter to signal it needs to be updated across processes. T_ARMI_PARAM_PARALLEL0
signature: test_setter
requirements: R_ARMI_PARAM_PARALLEL
Test Case: Tooling that allows a Parameter to signal it needs to be updated across processes. T_ARMI_PARAM_PARALLEL1
signature: test_setterGetterBasics
requirements: R_ARMI_PARAM_PARALLEL
Test Case: The reactor object is a composite. T_ARMI_R
signature: test_coreSfp
requirements: R_ARMI_R
Test Case: Parameters are accessible throughout the armi tree. T_ARMI_PARAM1
signature: test_getSetParameters
requirements: R_ARMI_PARAM
Test Case: Ensure there is a setting for total core power. T_ARMI_SETTINGS_POWER0
signature: test_getSetParameters
requirements: R_ARMI_SETTINGS_POWER
Test Case: Retrieve neighboring assemblies of a given assembly. T_ARMI_R_FIND_NEIGHBORS
signature: test_findNeighbors
Test Case: Get assembly by location. T_ARMI_R_GET_ASSEM0
signature: test_getAssemblyWithLoc
requirements: R_ARMI_R_GET_ASSEM
Test Case: Get assembly by name. T_ARMI_R_GET_ASSEM1
signature: test_getAssemblyWithName
requirements: R_ARMI_R_GET_ASSEM
Test Case: Convert a third-core to a full-core geometry and then restore it. T_ARMI_THIRD_TO_FULL_CORE1
signature: test_restoreReactor
Test Case: Get the core symmetry. T_ARMI_R_SYMM
signature: test_getSymmetryFactor
requirements: R_ARMI_R_SYMM
Test Case: Test that assembly grids nest inside core grids. T_ARMI_GRID_NEST
signature: test_getGridBounds
requirements: R_ARMI_GRID_NEST
Test Case: Test that the reactor can calculate its core block mesh. T_ARMI_R_MESH
signature: test_findAllMeshPoints
requirements: R_ARMI_R_MESH
Test Case: Add item to a zone. T_ARMI_ZONE0
signature: test_addItem
requirements: R_ARMI_ZONE
Test Case: Add multiple items to a zone. T_ARMI_ZONE1
signature: test_addItems
requirements: R_ARMI_ZONE
Test Case: Add location to a zone. T_ARMI_ZONE2
signature: test_addLoc
requirements: R_ARMI_ZONE
Test Case: Add multiple locations to a zone. T_ARMI_ZONE3
signature: test_addLocs
requirements: R_ARMI_ZONE
Test Case: Create collection of Zones. T_ARMI_ZONE4
signature: test_dictionaryInterface
requirements: R_ARMI_ZONE
Test Case: Settings have validation and correction tools. T_ARMI_SETTINGS_RULES0
signature: test_overwriteSettingsCorrectiveQuery
requirements: R_ARMI_SETTINGS_RULES
Test Case: Test getting and setting import settings metadata. T_ARMI_SETTINGS_META
signature: test_metaData
requirements: R_ARMI_SETTINGS_META
Test Case: Registering a plugin can change what settings exist. T_ARMI_PLUGIN_SETTINGS
signature: test_pluginSettings
Test Case: The setting default is mandatory. T_ARMI_SETTINGS_DEFAULTS
signature: test_default
Test Case: Settings can be input from a human-readable text file. T_ARMI_SETTINGS_IO_TXT0
signature: test_readFromFile
Test Case: Settings can be output to a human-readable text file. T_ARMI_SETTINGS_IO_TXT1
signature: test_writeFull
Test Case: The default application consists of a list of default plugins. T_ARMI_APP_PLUGINS
signature: test_getDefaultPluginManager
requirements: R_ARMI_APP_PLUGINS
Test Case: The tight coupling logic is based around a convergence criteria. T_ARMI_OPERATOR_PHYSICS1
signature: test_isConverged
Test Case: Run a parallel operator. T_ARMI_OPERATOR_MPI0
signature: test_basicOperatorMPI
requirements: R_ARMI_OPERATOR_MPI
Test Case: Run a parallel operator that fails online on the main process. T_ARMI_OPERATOR_MPI1
signature: test_primaryException
requirements: R_ARMI_OPERATOR_MPI
Test Case: Synchronize a reactor's state across processes. T_ARMI_CMP_MPI0
signature: test_noConflicts
requirements: R_ARMI_CMP_MPI
Test Case: Raise errors when there are conflicts across processes. T_ARMI_CMP_MPI1
signature: test_withConflicts
requirements: R_ARMI_CMP_MPI
Test Case: Don't raise errors when multiple processes make the same changes. T_ARMI_CMP_MPI2
signature: test_withConflictsButSameValue
requirements: R_ARMI_CMP_MPI
Test Case: Define a new, unique flag through the plugin pathway. T_ARMI_FLAG_EXTEND1
signature: test_defineFlags
requirements: R_ARMI_FLAG_EXTEND
Test Case: Load a plugin into an app and show it is loaded. T_ARMI_PLUGIN_REGISTER
signature: test_defineFlags
requirements: R_ARMI_PLUGIN
Test Case: ARMI plugins define parameters, which appear on a new Block. T_ARMI_PLUGIN_PARAMS
signature: test_defineParameters
requirements: R_ARMI_PLUGIN_PARAMS
Test Case: Plugins can add interfaces to the interface stack. T_ARMI_PLUGIN_INTERFACES0
signature: test_exposeInterfaces
Test Case: Check that some known plugins correctly add interfaces to the stack. T_ARMI_PLUGIN_INTERFACES1
signature: test_pluginsExposeInterfaces
Test Case: The run log verbosity can be configured with an integer. T_ARMI_LOG0
signature: test_setVerbosityFromInteger
requirements: R_ARMI_LOG
Test Case: The run log verbosity can be configured with a string. T_ARMI_LOG1
signature: test_setVerbosityFromString
requirements: R_ARMI_LOG
Test Case: Generate a warning report after a simulation is complete. T_ARMI_LOG2
signature: test_warningReport
requirements: R_ARMI_LOG
Test Case: Test an important edge case for a warning report. T_ARMI_LOG3
signature: test_warningReportInvalid
requirements: R_ARMI_LOG
Test Case: The run log has configurable verbosity. T_ARMI_LOG4
signature: test_setVerbosity
requirements: R_ARMI_LOG
Test Case: The run log can log to stream. T_ARMI_LOG_IO0
signature: test_setVerbosity
requirements: R_ARMI_LOG_IO
Test Case: Test that we support the user setting log verbosity BEFORE the logging starts. T_ARMI_LOG5
signature: test_setVerbosityBeforeStartLog
requirements: R_ARMI_LOG
Test Case: The run log combines logs from different processes. T_ARMI_LOG_MPI
signature: test_concatenateLogs
requirements: R_ARMI_LOG_MPI
Test Case: The run log can log to file. T_ARMI_LOG_IO1
signature: test_concatenateLogs
requirements: R_ARMI_LOG_IO
Test Case: Test that log directories can be created for logging output files. T_ARMI_LOG6
signature: test_createLogDir
requirements: R_ARMI_LOG
Test Case: Write logging text to the logging stream and/or file. T_ARMI_LOG7
signature: test_write
requirements: R_ARMI_LOG
Test Case: Expand mass fractions to nuclides. T_ARMI_UTIL_EXP_MASS_FRACS
signature: test_expandElementalMassFracsToNuclides
Test Case: Number densities are retrievable from masses. T_ARMI_UTIL_MASS2N_DENS
signature: test_getNDensFromMasses
Test Case: Create MCNP material card T_ARMI_UTIL_MCNP_MAT_CARD
signature: test_formatMaterialCard
Test Case: Set of flags are extensible without loss of uniqueness. T_ARMI_FLAG_EXTEND0
signature: test_collision_extension
requirements: R_ARMI_FLAG_EXTEND
Test Case: No two flags have equivalence. T_ARMI_FLAG_DEFINE
signature: test_collision_creation
requirements: R_ARMI_FLAG_DEFINE

3.4. Test Results Report

This section provides the results of the test case runs for this release of ARMI software.

3.4.1. Testing Environment

This section describes the relevant environment under which the tests were run as required by Section 3.2.2.4. Note that individual test records have the option to define additional environment information.

3.4.1.1. System Information

The logged operating system and processor information proves what environment the software was tested on:

[info] Failed to extract font properties from /usr/share/fonts/truetype/noto/NotoColorEmoji.ttf: Can not load face (unknown file format; error code 0x2)
[info] Failed to extract font properties from /usr/share/fonts/truetype/noto/NotoColorEmoji.ttf: Can not load face (unknown file format; error code 0x2)
[info] generated new fontManager
[info] generated new fontManager
OS Info:  "Ubuntu 22.04.5 LTS"
Processor(s):
    Architecture:                         x86_64
    CPU op-mode(s):                       32-bit, 64-bit
    Address sizes:                        48 bits physical, 48 bits virtual
    Byte Order:                           Little Endian
    CPU(s):                               4
    On-line CPU(s) list:                  0-3
    Vendor ID:                            AuthenticAMD
    Model name:                           AMD EPYC 7763 64-Core Processor
    CPU family:                           25
    Model:                                1
    Thread(s) per core:                   2
    Core(s) per socket:                   2
    Socket(s):                            1
    Stepping:                             1
    BogoMIPS:                             4890.86
    Flags:                                fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl tsc_reliable nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm cmp_legacy svm cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw topoext vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves user_shstk clzero xsaveerptr rdpru arat npt nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload umip vaes vpclmulqdq rdpid fsrm
    Virtualization:                       AMD-V
    Hypervisor vendor:                    Microsoft
    Virtualization type:                  full
    L1d cache:                            64 KiB (2 instances)
    L1i cache:                            64 KiB (2 instances)
    L2 cache:                             1 MiB (2 instances)
    L3 cache:                             32 MiB (1 instance)
    NUMA node(s):                         1
    NUMA node0 CPU(s):                    0-3
    Vulnerability Gather data sampling:   Not affected
    Vulnerability Itlb multihit:          Not affected
    Vulnerability L1tf:                   Not affected
    Vulnerability Mds:                    Not affected
    Vulnerability Meltdown:               Not affected
    Vulnerability Mmio stale data:        Not affected
    Vulnerability Reg file data sampling: Not affected
    Vulnerability Retbleed:               Not affected
    Vulnerability Spec rstack overflow:   Vulnerable: Safe RET, no microcode
    Vulnerability Spec store bypass:      Vulnerable
    Vulnerability Spectre v1:             Mitigation; usercopy/swapgs barriers and __user pointer sanitization
    Vulnerability Spectre v2:             Mitigation; Retpolines; STIBP disabled; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
    Vulnerability Srbds:                  Not affected
    Vulnerability Tsx async abort:        Not affected

3.4.1.1.1. Python Version and Packages
Fri Mar  7 16:58:37 UTC 2025
Python 3.13.2
alabaster==0.7.16
-e git+https://github.com/terrapower/armi@9af168123d6c96c80f9f2450239f7dff939342e4#egg=armi
astroid==3.3.8
asttokens==3.0.0
attrs==25.1.0
babel==2.17.0
beautifulsoup4==4.13.3
black==22.6.0
bleach==6.2.0
certifi==2025.1.31
charset-normalizer==3.4.1
click==8.1.8
comm==0.2.2
contourpy==1.3.1
coverage==7.6.12
cycler==0.12.1
debugpy==1.8.13
decorator==5.2.1
defusedxml==0.7.1
dill==0.3.9
docutils==0.21.2
execnet==2.1.1
executing==2.2.0
fastjsonschema==2.21.1
fonttools==4.56.0
h5py==3.13.0
htmltree==0.7.6
idna==3.10
imagesize==1.4.1
iniconfig==2.0.0
ipykernel==6.29.5
ipython==9.0.1
ipython_pygments_lexers==1.1.1
isort==6.0.1
jedi==0.19.2
Jinja2==3.1.5
jsonschema==4.23.0
jsonschema-specifications==2024.10.1
jupyter_client==8.6.3
jupyter_core==5.7.2
jupyterlab_pygments==0.3.0
kiwisolver==1.4.8
lxml==5.3.1
MarkupSafe==3.0.2
matplotlib==3.10.1
matplotlib-inline==0.1.7
mccabe==0.7.0
mistune==3.1.2
mpi4py==4.0.3
mypy-extensions==1.0.0
nbclient==0.10.2
nbconvert==7.16.6
nbformat==5.10.4
nbsphinx==0.9.6
nbsphinx-link==1.3.1
nest-asyncio==1.6.0
numpy==2.2.3
ordered-set==4.1.0
packaging==24.2
pandoc==2.4
pandocfilters==1.5.1
parso==0.8.4
pathspec==0.12.1
pbr==6.1.1
pexpect==4.9.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
plumbum==1.9.0
ply==3.11
prompt_toolkit==3.0.50
psutil==7.0.0
ptyprocess==0.7.0
pure_eval==0.2.3
pyDOE==0.3.8
pyevtk==1.6.0
Pygments==2.19.1
pylint==3.3.4
pyparsing==3.2.1
pypdf==5.3.1
pytest==8.3.5
pytest-cov==6.0.0
pytest-xdist==3.6.1
python-dateutil==2.9.0.post0
pyzmq==26.2.1
referencing==0.36.2
requests==2.32.3
requests-file==2.1.0
rpds-py==0.23.1
ruamel.yaml==0.18.10
ruamel.yaml.clib==0.2.12
ruff==0.5.1
scipy==1.15.2
setuptools==75.8.2
six==1.17.0
snowballstemmer==2.2.0
soupsieve==2.6
Sphinx==7.4.7
sphinx-data-viewer==0.1.5
sphinx-gallery==0.13.0
sphinx-needs==4.2.0
sphinx-rtd-theme==3.0.2
sphinx-test-reports==1.1.0
sphinxcontrib-apidoc==0.5.0
sphinxcontrib-applehelp==2.0.0
sphinxcontrib-devhelp==2.0.0
sphinxcontrib-htmlhelp==2.1.0
sphinxcontrib-jquery==4.1
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-plantuml==0.30
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
sphinxext-opengraph==0.9.1
stack-data==0.6.3
tinycss2==1.4.0
toml==0.10.2
tomlkit==0.13.2
tornado==6.4.2
traitlets==5.14.3
typing_extensions==4.12.2
unittest-xml-reporting==3.2.0
urllib3==2.3.0
voluptuous==0.15.2
wcwidth==0.2.13
webencodings==0.5.1
yamlize==0.7.1

3.4.1.2. Software Tested and Date

The software tested and date of testing are below:

Fri Mar  7 16:58:37 UTC 2025
Python 3.13.2

3.4.2. Record of Test Cases

This section includes the resulting test record for each test which together with Section 3.4.1 satisfies the criteria necessary for the creation of the test record defined in Section 3.2.2.

3.4.2. pytest

Tests: 2411, Failures: 0, Errors: 0, Skips: 20

Time: 242.042

class

name

status

reason

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_wildcardFile

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_compareAuxData

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_cache

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_density

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_pseudoDensityKgM3

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_compareDatabaseDuplicate

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Lead_TestCase

test_TD

passed

armi.materials.tests.test_materials.Lead_TestCase

test_cache

passed

armi.materials.tests.test_materials.Lead_TestCase

test_density

passed

armi.materials.tests.test_materials.Lead_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Lead_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Lead_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.Lead_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Lead_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.Lead_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Lead_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_TD

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_cache

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_density

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Lead_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.NiobiumZirconium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_density

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Lead_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Lead_TestCase

test_volumetricExpansion

passed

armi.materials.tests.test_materials.Lead_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_TD

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_cache

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_density

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Potassium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_TD

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_cache

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_dynamicVisc

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_getTempChangeForDensityChange

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.ScandiumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_density

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_volumetricExpansion

passed

armi.materials.tests.test_materials.LeadBismuth_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Copper_TestCase

test_TD

passed

armi.materials.tests.test_materials.Copper_TestCase

test_cache

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Copper_TestCase

test_density

passed

armi.materials.tests.test_materials.Copper_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Copper_TestCase

test_densityNeverChanges

passed

armi.materials.tests.test_materials.Copper_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_enthalpy

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Copper_TestCase

test_getChildren

passed

armi.materials.tests.test_materials.Copper_TestCase

test_getChildrenWithFlags

passed

armi.materials.tests.test_materials.Copper_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Copper_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.Copper_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Copper_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_specificVolumeLiquid

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.Sodium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_TD

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_cache

passed

armi.materials.tests.test_materials.Copper_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_TD

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_cache

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_density

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_density

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Tantalum_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_TD

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_cache

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_volumetricExpansion

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_density

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Sulfur_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Zr_TestCase

test_TD

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Zr_TestCase

test_cache

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Zr_TestCase

test_density

passed

armi.materials.tests.test_materials.Zr_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_meltingPoint

passed

armi.materials.tests.test_materials.Zr_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Zr_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Zr_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Zr_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.Zr_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Zr_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Zr_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.Zr_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.Zr_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_Iconel800_linearExpansion

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_TD

passed

armi.materials.tests.test_materials.ThoriumUraniumMetal_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_applyInputParams

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_density

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_cache

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_density

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Inconel_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_00_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_01_linearExpansionPercent

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_02_linearExpansion

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_03_pseudoDensity

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_TD

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_cache

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_density

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_polyfitHeatCapacity

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.Uranium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_TD

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_adjustMassEnrichment

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_polyfitLinearExpansionPercent

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_polyfitThermalConductivity

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Inconel600_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_applyInputParams

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_cache

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_00_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_01_linearExpansionPercent

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_densityTimesHeatCapactiy

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_02_linearExpansion

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_getDensityExpansion3D

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_03_pseudoDensity

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_TD

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_getTempChangeForDensityChange

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_getTemperatureAtDensity

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_cache

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_density

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_meltingPoint

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_polyfitHeatCapacity

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_polyfitLinearExpansionPercent

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_removeNucMassFrac

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_polyfitThermalConductivity

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.UraniumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Inconel625_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_cache

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_00_setDefaultMassFracs

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_density

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_01_linearExpansionPercent

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_02_linearExpansion

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_03_pseudoDensity

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_TD

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_cache

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_density

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_meltingPoint

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_setDefaultMassFracs

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_polyfitHeatCapacity

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_polyfitLinearExpansionPercent

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.Thorium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_TD

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_compareDatabaseSim

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_polyfitThermalConductivity

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_cache

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_failOnDuplicateSetting

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.InconelX750_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_TD

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_cache

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_meltingPoint

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_density

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.cases.tests.test_suiteBuilder.TestLatinHyperCubeSuiteBuilder

test_addDegreeOfFreedom

passed

armi.cases.tests.test_suiteBuilder.TestLatinHyperCubeSuiteBuilder

test_buildSuite

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.ThoriumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_linearExpansionHotter

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_nickleContent

passed

armi.materials.tests.test_materials.Void_TestCase

test_TD

passed

armi.materials.tests.test_materials.Void_TestCase

test_cache

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Alloy200_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Void_TestCase

test_density

passed

armi.materials.tests.test_materials.Void_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Void_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Void_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_TD

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_cache

passed

armi.materials.tests.test_materials.Void_TestCase

test_linearExpansion

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_density

passed

armi.migration.tests.test_migration_base.TestSettingsMigration

test_loadStreamFromPath

passed

armi.nucDirectory.tests.test_elements.TestElement

test_abundancesAddToOne

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_addExistingElementFails

passed

armi.materials.tests.test_materials.Void_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Void_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Void_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Void_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_TD

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_cache

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_density

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_addedElementAppearsInElementList

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Mixture_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.CaH2_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_density

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Hafnium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_TD

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_cache

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_density

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_heatCapacity

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_meanCoefficientThermalExpansion

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_thermalConductivity

passed

armi.materials.tests.test_materials.HastelloyN_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.TZM_TestCase

test_00_applyInputParams

passed

armi.materials.tests.test_materials.TZM_TestCase

test_01_pseudoDensity

passed

armi.materials.tests.test_materials.TZM_TestCase

test_02_linearExpansionPercent

passed

armi.materials.tests.test_materials.TZM_TestCase

test_TD

passed

armi.materials.tests.test_materials.TZM_TestCase

test_cache

passed

armi.materials.tests.test_materials.TZM_TestCase

test_density

passed

armi.materials.tests.test_materials.TZM_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.TZM_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.TZM_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.TZM_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.TZM_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.TZM_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_TD

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_cache

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.YttriumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_TD

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_cache

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.ZincOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.FuelMaterial_TestCase

test_class1Class2_class1_wt_frac

passed

armi.materials.tests.test_materials.FuelMaterial_TestCase

test_class1Class2_classX_custom_isotopics

passed

armi.materials.tests.test_sic.Test_SiC

test_TD

passed

armi.materials.tests.test_sic.Test_SiC

test_cache

passed

armi.materials.tests.test_sic.Test_SiC

test_density

passed

armi.materials.tests.test_sic.Test_SiC

test_densityKgM3

passed

armi.materials.tests.test_sic.Test_SiC

test_duplicate

passed

armi.materials.tests.test_sic.Test_SiC

test_heatCapacity

passed

armi.materials.tests.test_sic.Test_SiC

test_isPicklable

passed

armi.materials.tests.test_sic.Test_SiC

test_meltingPoint

passed

armi.materials.tests.test_sic.Test_SiC

test_propertyValidTemperature

passed

armi.materials.tests.test_sic.Test_SiC

test_pseudoDensity

passed

armi.materials.tests.test_sic.Test_SiC

test_pseudoDensityKgM3

passed

armi.materials.tests.test_sic.Test_SiC

test_wrappedDensity

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_TD

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_cache

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_density

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_densityKgM3

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_duplicate

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_isPicklable

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_sulfur_density_frac

passed

armi.materials.tests.test_sulfur.Sulfur_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_TD

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_cache

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_density

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_theoretical_pseudoDensity

passed

armi.materials.tests.test_thoriumOxide.ThoriumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_TD

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_cache

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_density

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_densityKgM3

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_duplicate

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_isPicklable

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_uZr.UZR_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_water.Test_Water

test_massFrac

passed

armi.materials.tests.test_water.Test_Water

test_propertyValidTemperature

passed

armi.materials.tests.test_water.Test_Water

test_validateNames

passed

armi.materials.tests.test_water.Test_Water

test_water_at_boiling

passed

armi.materials.tests.test_water.Test_Water

test_water_at_critcalPoint

passed

armi.materials.tests.test_water.Test_Water

test_water_at_freezing

passed

armi.migration.tests.test_m0_1_6.TestMigration

test_locationLabelMigration

passed

armi.migration.tests.test_migration_base.TestMigrationBases

test_basic_validation

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_writeBinary

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.Isotxs_merge_Tests

test_mergeMccV2FilesRemovesTheFileWideChi

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_compareSets

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_diffResultsBasic

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_diffSimpleData

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_diffSpecialData

passed

armi.bookkeeping.db.tests.test_comparedb3.TestCompareDB3

test_outputWriter

passed

armi.bookkeeping.db.tests.test_database3.TestDatabase

test_history

passed

armi.nuclearDataIO.cccc.tests.test_labels.TestLabels

test_readLabelsBinary

passed

armi.nuclearDataIO.cccc.tests.test_labels.TestLabels

test_writeLabelsAscii

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhflux

test_fc

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhflux

test_fluxMoments

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhflux

test_write

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhflux

test_xyPartialCurrents

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhflux

test_zPartialCurrents

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhfluxVariant

test_fc

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhfluxVariant

test_fluxMoments

passed

armi.nuclearDataIO.cccc.tests.test_nhflux.TestNhfluxVariant

test_write

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrxNuclides

test_getPMATRXFileName

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrxNuclides

test_nuclideDataIsDifferent

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrxNuclides

test_pmatrxNuclideDataAA

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrxNuclides

test_pmatrxNuclideDataAB

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrx

test_pmatrxDoesntHaveDoseConversionFactors

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrx

test_pmatrxGammaEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrx

test_pmatrxNeutronEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestPmatrx

test_pmatrxNuclideNames

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_elementByNameReturnsElement

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_elementBySymbolReturnsElement

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_elementByZReturnsElement

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_getNatrualIsotpicsOnlyRetrievesAbundaceGt0

passed

armi.nucDirectory.tests.test_elements.TestElement

test_element_isNaturallyOccurring

passed

armi.nucDirectory.tests.test_elements.TestElement

test_elements_elementBulkProperties

passed

armi.nucDirectory.tests.test_elements.TestElement

test_isHeavyMetal

passed

armi.nucDirectory.tests.test_nucDirectory.TestNucDirectory

test_getDisplacementEnergy

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWritten

test_pmatrxDoesntHaveDoseConversionFactors

passed

armi.nucDirectory.tests.test_nucDirectory.TestNucDirectory

test_nucDir_getNameForOldDashedNames

passed

armi.nucDirectory.tests.test_nucDirectory.TestNucDirectory

test_nucDir_getNuclideFromNuclidesNameReturnsNuclide

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWritten

test_pmatrxGammaEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWritten

test_pmatrxNeutronEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWritten

test_pmatrxNuclideNames

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWritten

test_writtenIsIdenticalToOriginal

passed

armi.nucDirectory.tests.test_nucDirectory.TestNucDirectory

test_nucDir_getNuclidesFromForBadName

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWrittenAscii

test_pmatrxDoesntHaveDoseConversionFactors

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWrittenAscii

test_pmatrxGammaEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWrittenAscii

test_pmatrxNeutronEnergies

passed

armi.nuclearDataIO.cccc.tests.test_pmatrx.TestProductionMatrix_FromWrittenAscii

test_pmatrxNuclideNames

passed

armi.nuclearDataIO.cccc.tests.test_pwdint.TestGeodst

test_readGeodst

passed

armi.nuclearDataIO.cccc.tests.test_pwdint.TestGeodst

test_writeGeodst

passed

armi.nuclearDataIO.cccc.tests.test_rtflux.Testrtflux

test_adjoint

passed

armi.nuclearDataIO.cccc.tests.test_rtflux.Testrtflux

test_readrtflux

passed

armi.nuclearDataIO.cccc.tests.test_rtflux.Testrtflux

test_rwAscii

passed

armi.nuclearDataIO.cccc.tests.test_rtflux.Testrtflux

test_writertflux

passed

armi.nuclearDataIO.cccc.tests.test_rzflux.TestRzflux

test_readRzflux

passed

armi.nuclearDataIO.cccc.tests.test_rzflux.TestRzflux

test_rwAscii

passed

armi.nuclearDataIO.cccc.tests.test_rzflux.TestRzflux

test_writeRzflux

passed

armi.nuclearDataIO.tests.test_xsCollections.TestXsCollections

test_collapseCrossSection

passed

armi.nuclearDataIO.tests.test_xsCollections.TestXsCollections

test_createMacrosFromMicros

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_LumpNuclideBase_getNatrualIsotopicsDoesNotFail

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_NaturalNuclideBase_getNatrualIsotpics

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_NaturalNuclide_atomicWeightIsAverageOfNaturallyOccuringIsotopes

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_NonMc2Nuclide

passed

armi.nuclearDataIO.tests.test_xsCollections.TestXsCollections

test_generateTotalScatteringMatrix

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_curieDefinitionWithRa226

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_getDecay

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_getEndfMatNum

passed

armi.nuclearDataIO.tests.test_xsCollections.TestXsCollections

test_generateTotalScatteringMatrixWithMissingData

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_kryptonDecayConstants

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_loadMcc2Data

passed

armi.nuclearDataIO.tests.test_xsCollections.TestXsCollections

test_plotNucXs

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_loadMcc3EndfVII0Data

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_loadMcc3EndfVII1Data

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBase_AllAbundancesAddToOne

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_AllDatabaseNamesAreUnique

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_AllLabelsAreUnique

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canPickleAndUnpickleGAMISO

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canPickleAndUnpickleISOTXS

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canPickleAndUnpicklePMATRX

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canWriteGamisoFromCombinedXSLibrary

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canWriteIsotxsFromCombinedXSLibrary

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_canWritePmatrxFromCombinedXSLibrary

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_compareDifferentComponentsOfAnXSLibrary

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_Am242m

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_Mc2Elementals

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_NegativeZRaisesException

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_Z295RaisesException

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_databaseNamesStartWith_n

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_fromNameBadNameRaisesException

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_imposeBurnChainDecayBulkStatistics

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_imposeBurnChainTransmutationBulkStatistics

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_imposeBurn_nuSF

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_isHeavyMetal

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_labelAndNameCollsionsAreForSameNuclide

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_singleFailsWithMultipleMatches

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_singleFailsWithNoMatches

passed

armi.nucDirectory.tests.test_nuclideBases.TestNuclide

test_nucBases_singleIsPrettySpecific

passed

armi.nucDirectory.tests.test_nuclideBases.TestAAAZZZSId

test_AAAZZZSNameGenerator

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_ACECompound

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_ACEElementInCompound

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_ACEIsotope

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_endf8Compound

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_endf8ElementInCompound

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_endf8Isotope

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_failOnMultiple

passed

armi.nucDirectory.tests.test_thermalScattering.TestThermalScattering

test_graphiteOnReactor

passed

armi.nucDirectory.tests.test_transmutations.TransmutationTests

test_Transmutation_invalidReactionTypes

passed

armi.nucDirectory.tests.test_transmutations.TransmutationTests

test_Transmutation_productParticle

passed

armi.nucDirectory.tests.test_transmutations.TransmutationTests

test_Transmutation_validReactionTypes

passed

armi.nucDirectory.tests.test_transmutations.DecayModeTests

test_DecayMode_invalidReactionTypes

passed

armi.nucDirectory.tests.test_transmutations.DecayModeTests

test_DecayMode_validReactionTypes

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccIOStreamTests

test_initWithFileMode

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccBinaryRecordTests

test_notReadingAnEntireRecordRaisesException

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccBinaryRecordTests

test_readingBeyondRecordRaisesException

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_compareWorks

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccBinaryRecordTests

test_writeAndReadSimpleFloatRecord

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccBinaryRecordTests

test_writeAndReadSimpleIntegerRecord

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccBinaryRecordTests

test_writeAndReadSimpleStringRecord

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccAsciiRecordTests

test_notReadingAnEntireRecordRaisesException

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccAsciiRecordTests

test_readingBeyondRecordRaisesException

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccAsciiRecordTests

test_writeAndReadSimpleFloatRecord

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccAsciiRecordTests

test_writeAndReadSimpleIntegerRecord

passed

armi.nuclearDataIO.cccc.tests.test_cccc.CcccAsciiRecordTests

test_writeAndReadSimpleStringRecord

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_asciiRW

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_binaryRW

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_getCOMPXSFileName

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_libraryData

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_mergeCompxsLibraries

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_regionPrimaryXS

passed

armi.nuclearDataIO.cccc.tests.test_compxs.TestCompxs

test_totalScatterMatrix

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rw2DRecord

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rw3DRecord

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rw4DRecord

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rw5DRecord

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rwFile1DRecord

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test__rwFileID

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dSimpleHexz

test_writeBinary

passed

armi.nuclearDataIO.cccc.tests.test_dif3d.TestDif3dEmptyRecords

test_empty4and5Records

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_gamisoLibraryAttributes

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_ENDFVII1DecayConstants

skipped

The TH232, U232, PU238 and PU242 numbers do not agree, likely because they are from ENDV/B VI.8. /home/runner/work/armi/armi/armi/nuclearDataIO/cccc/tests/test_dlayxs.py:309: The TH232, U232, PU238 and PU242 numbers do not agree, likely because they are from ENDV/B VI.8.

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_ENDFVII1NeutronsPerFission

skipped

All the delayNeutronsPerFission data from mcc-v3 does not agree, this may be because they are from ENDV/B VI.8. /home/runner/work/armi/armi/armi/nuclearDataIO/cccc/tests/test_dlayxs.py:938: All the delayNeutronsPerFission data from mcc-v3 does not agree, this may be because they are from ENDV/B VI.8.

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_isotxsLibraryAttributes

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_mergeFailsWithNonIsotxsFiles

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_NuDelay

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_avg

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_chi_delay

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_mergeXSLibrariesWithDifferentDataWorks

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_chi_delaySumsTo1

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_compare

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_decayConstants

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_nuclides

passed

armi.nuclearDataIO.cccc.tests.test_dlayxs.DlayxsTests

test_writeBinary_mcc3

passed

armi.nuclearDataIO.cccc.tests.test_fixsrc.TestFixsrc

test_writeReadBinaryLoop

passed

armi.nuclearDataIO.cccc.tests.test_gamiso.TestGamiso

test_addDummyNuclidesToLibrary

passed

armi.nuclearDataIO.cccc.tests.test_gamiso.TestGamiso

test_compare

passed

armi.nuclearDataIO.cccc.tests.test_gamiso.TestGamiso

test_writeBinary

passed

armi.nuclearDataIO.cccc.tests.test_geodst.TestGeodst

test_readGeodst

passed

armi.nuclearDataIO.cccc.tests.test_geodst.TestGeodst

test_writeGeodst

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_getGAMISOFileName

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_getISOTXSFileName

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_getNuclide

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_getScatterWeights

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_getScatteringWeights

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_isotxsDetailedData

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_isotxsGeneralData

passed

armi.nuclearDataIO.cccc.tests.test_isotxs.TestIsotxs

test_n2nIsReactionBased

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductsExplicit

test_explicitFissionProducts

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestMo99LFP

test_getAllFissionProductNames

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxOptions

test_readFromReactors

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxOptions

test_readFromSettings

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxOptions

test_savePhysicsFiles

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterface

test_checkEnergyBalance

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterface

test_computeDpaRate

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterface

test_getHistoryParams

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterface

test_getIOFileNames

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterface

test_interaction

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestXSLibrary

test_pmatrxLibraryAttributes

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestGetISOTXSFilesInWorkingDirectory

test_getISOTXSFilesWithLibrarySuffix

passed

armi.nuclearDataIO.tests.test_xsLibraries.TestGetISOTXSFilesInWorkingDirectory

test_getISOTXSFilesWithoutLibrarySuffix

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecuters

test_calculateKeff

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecuters

test_executerInteraction

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_canRemoveIsotopes

skipped

Do not have data for comparing merged and purged PMATRX /home/runner/work/armi/armi/armi/nuclearDataIO/tests/test_xsLibraries.py:417: Do not have data for comparing merged and purged PMATRX

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecuters

test_getExecuterCls

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecuters

test_getTightCouplingValue

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_cannotMergeXSLibWithSameNuclideNames

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecuters

test_setTightCouplingDefaults

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecutersNonUniform

test_calculateKeff

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecutersNonUniform

test_executerInteractionNonUniformAssems

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxInterfaceWithExecutersNonUniform

test_getExecuterCls

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxResultMapper

test_getBurnupPeakingFactor

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxResultMapper

test_getBurnupPeakingFactorZero

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxResultMapper

test_getDpaXs

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxResultMapper

test_mapper

passed

armi.cases.tests.test_suiteBuilder.TestLatinHyperCubeSuiteBuilder

test_initialize

passed

armi.cases.tests.test_suiteBuilder.TestFullFactorialSuiteBuilder

test_buildSuite

passed

armi.cases.tests.test_suiteBuilder.TestSeparateEffectsBuilder

test_buildSuite

passed

armi.cli.tests.test_runEntryPoint.TestInitializationEntryPoints

test_entryPointInitialization

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_cannotMergeXSLibsWithDifferentGammaGroupStructures

passed

armi.cli.tests.test_runEntryPoint.TestCheckInputEntryPoint

test_checkInputEntryPointBasics

passed

armi.cli.tests.test_runEntryPoint.TestCheckInputEntryPoint

test_checkInputEntryPointInvoke

passed

armi.cli.tests.test_runEntryPoint.TestCloneArmiRunCommandBatch

test_cloneArmiRunCommandBatchBasics

passed

armi.cli.tests.test_runEntryPoint.TestCloneArmiRunCommandBatch

test_cloneArmiRunCommandBatchInvokeMedium

passed

armi.bookkeeping.db.tests.test_database3.TestDatabase

test_load

passed

armi.physics.neutronics.globalFlux.tests.test_globalFluxInterface.TestGlobalFluxUtils

test_calcReactionRates

passed

armi.cli.tests.test_runEntryPoint.TestCloneArmiRunCommandBatch

test_cloneArmiRunCommandBatchInvokeShort

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_cannotMergeXSLibxWithDifferentGroupStructure

passed

armi.cli.tests.test_runEntryPoint.TestCloneSuiteCommand

test_cloneSuiteCommandBasics

passed

armi.cli.tests.test_runEntryPoint.TestCompareCases

test_compareCasesBasics

passed

armi.cli.tests.test_runEntryPoint.TestCompareSuites

test_compareSuitesBasics

passed

armi.cli.tests.test_runEntryPoint.TestExpandBlueprints

test_expandBlueprintsBasics

passed

armi.cli.tests.test_runEntryPoint.TestExtractInputs

test_extractInputsBasics

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_getSuffix

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_includeGammaXS

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactAll

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactBOC

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactBOL

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactEveryNode

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactEveryNodeAll

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactEveryNodeFirstCoupled

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactEveryNodeWhenCoupled

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactEveryNodeWhenCoupledButNot

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_interactFirstCoupledIteration

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsInterface

test_latticePhysicsInterface

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsLibraryCreation

test_libCreation_GenXS

passed

armi.cli.tests.test_runEntryPoint.TestInjectInputs

test_injectInputsBasics

passed

armi.cli.tests.test_runEntryPoint.TestInjectInputs

test_injectInputsInvokeIgnore

passed

armi.cli.tests.test_runEntryPoint.TestInjectInputs

test_injectInputsInvokeNoData

passed

armi.cli.tests.test_runEntryPoint.TestMigrateInputs

test_migrateInputsBasics

passed

armi.cli.tests.test_runEntryPoint.TestModifyCaseSettingsCommand

test_modifyCaseSettingsCommandBasics

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther

passed

armi.cli.tests.test_runEntryPoint.TestModifyCaseSettingsCommand

test_modifyCaseSettingsCommandInvoke

passed

armi.cli.tests.test_runEntryPoint.TestReportsEntryPoint

test_cleanArgs

passed

armi.cli.tests.test_runEntryPoint.TestReportsEntryPoint

test_reportsEntryPointBasics

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsLibraryCreation

test_libCreation_GenXS_2

passed

armi.nuclearDataIO.tests.test_xsLibraries.Pmatrx_Merge_Tests

test_mergeTwoXSLibFiles

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsLibraryCreation

test_libCreation_GenXS_3

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsLibraryCreation

test_libCreation_NoGenXS

passed

armi.nuclearDataIO.tests.test_xsLibraries.Isotxs_Merge_Tests

test_canRemoveIsotopes

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeInterface.TestLatticePhysicsLibraryCreation

test_libCreation_NoGenXS_2

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getAllNuclidesByTemperatureInC

passed

armi.nuclearDataIO.tests.test_xsLibraries.Isotxs_Merge_Tests

test_cannotMergeXSLibWithSameNuclideNames

passed

armi.nuclearDataIO.tests.test_xsLibraries.Isotxs_Merge_Tests

test_cannotMergeXSLibxWithDifferentGroupStructure

passed

armi.cli.tests.test_runEntryPoint.TestReportsEntryPoint

test_toTwoTuple

passed

armi.cli.tests.test_runEntryPoint.TestCompareIsotxsLibsEntryPoint

test_compareIsotxsLibsBasics

passed

armi.cli.tests.test_runEntryPoint.TestRunEntryPoint

test_executeCommand

passed

armi.cli.tests.test_runEntryPoint.TestRunEntryPoint

test_runCommandHelp

passed

armi.cli.tests.test_runEntryPoint.TestRunEntryPoint

test_runEntryPointBasics

passed

armi.cli.tests.test_runEntryPoint.TestRunSuiteCommand

test_runSuiteCommandBasics

passed

armi.nuclearDataIO.tests.test_xsLibraries.Isotxs_Merge_Tests

test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther

passed

armi.cli.tests.test_runEntryPoint.TestVisFileEntryPointCommand

test_visFileEntryPointBasics

passed

armi.cli.tests.test_runSuite.TestRunSuiteSuite

test_listCommand

passed

armi.cli.tests.test_runSuite.TestRunSuiteSuite

test_run

passed

armi.cli.tests.test_runSuite.TestRunSuiteSuite

test_showVersion

passed

armi.materials.tests.test__init__.Materials__init__Tests

test_canAccessClassesFromPackage

passed

armi.materials.tests.test__init__.Materials__init__Tests

test_packageClassesEqualModuleClasses

passed

armi.materials.tests.test_air.Test_Air

test_heatCapacity

passed

armi.materials.tests.test_air.Test_Air

test_massFrac

passed

armi.materials.tests.test_air.Test_Air

test_pseudoDensity

passed

armi.materials.tests.test_air.Test_Air

test_thermalConductivity

passed

armi.materials.tests.test_air.Test_Air

test_validRanges

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_TD

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_cache

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_density

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_densityKgM3

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_duplicate

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_isPicklable

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_theoretical_pseudoDensity

passed

armi.materials.tests.test_b4c.B4C_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_be9.Test_Be9

test_TD

passed

armi.materials.tests.test_be9.Test_Be9

test_cache

passed

armi.materials.tests.test_be9.Test_Be9

test_density

passed

armi.materials.tests.test_be9.Test_Be9

test_densityKgM3

passed

armi.materials.tests.test_be9.Test_Be9

test_duplicate

passed

armi.materials.tests.test_be9.Test_Be9

test_isPicklable

passed

armi.materials.tests.test_be9.Test_Be9

test_propertyValidTemperature

passed

armi.materials.tests.test_be9.Test_Be9

test_pseudoDensity

passed

armi.materials.tests.test_be9.Test_Be9

test_pseudoDensityKgM3

passed

armi.materials.tests.test_be9.Test_Be9

test_wrappedDensity

passed

armi.materials.tests.test_fluids.TestFluids

test_fluidDensityWrapperNoWarning

passed

armi.materials.tests.test_graphite.Graphite_TestCase

test_density

passed

armi.materials.tests.test_graphite.Graphite_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_graphite.Graphite_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_Lithium_material_modifications

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_TD

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_boilingPoint

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_cache

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_density

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_duplicate

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_heatCapacity

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_isPicklable

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_meltingPoint

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_lithium.Lithium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.MaterialConstructionTests

test_material_initialization

passed

armi.materials.tests.test_materials.MaterialFindingTests

test_findMaterial

passed

armi.materials.tests.test_materials.MaterialFindingTests

test_namespacing

passed

armi.materials.tests.test_materials.Californium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Californium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Californium_TestCase

test_density

passed

armi.materials.tests.test_materials.Californium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Californium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Californium_TestCase

test_getCorrosionRate

passed

armi.materials.tests.test_materials.Californium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Californium_TestCase

test_porosities

passed

armi.materials.tests.test_materials.Californium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Californium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Californium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Californium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_density

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Cesium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_TD

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_cache

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_density

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Magnesium_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_TD

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_cache

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_density

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_linearExpansionPercent

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.MagnesiumOxide_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_TD

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_cache

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_density

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_propertyValidTemperature

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_pseudoDensity

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.Molybdenum_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.MOX_TestCase

test_TD

passed

armi.materials.tests.test_materials.MOX_TestCase

test_applyInputParams

passed

armi.materials.tests.test_materials.MOX_TestCase

test_cache

passed

armi.materials.tests.test_materials.MOX_TestCase

test_density

passed

armi.materials.tests.test_materials.MOX_TestCase

test_densityKgM3

passed

armi.materials.tests.test_materials.MOX_TestCase

test_duplicate

passed

armi.materials.tests.test_materials.MOX_TestCase

test_getMassFracPuO2

passed

armi.materials.tests.test_materials.MOX_TestCase

test_getMeltingPoint

passed

armi.materials.tests.test_materials.MOX_TestCase

test_getMolFracPuO2

passed

armi.materials.tests.test_materials.MOX_TestCase

test_isPicklable

passed

armi.materials.tests.test_materials.MOX_TestCase

test_pseudoDensityKgM3

passed

armi.materials.tests.test_materials.MOX_TestCase

test_wrappedDensity

passed

armi.materials.tests.test_materials.NaCl_TestCase

test_TD

passed

armi.nuclearDataIO.tests.test_xsLibraries.Isotxs_Merge_Tests

test_mergeTwoXSLibFiles

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_numberDensities

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_numberDensitiesAnchor

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_numberFractions

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_unmodified

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics_ErrorConditions

test_densityMustBePositive

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics_ErrorConditions

test_nonConformantElementName

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics_ErrorConditions

test_numberDensitiesCannotSpecifyDensity

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestNuclideFlagsExpansion

test_eleExpandInfoBasedOnCodeENDF

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestNuclideFlagsExpansion

test_expandedNatural

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBPRoundTrip

test_contents

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getAllNuclidesByTemperatureInCExplicitFissionProducts

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBPRoundTrip

test_roundTrip

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBPRoundTrip

test_tinyMap

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBlueprintsSection

test_simpleRead

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBlueprintsSection

test_simpleReadLatticeMap

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestGridBlueprintsSection

test_simpleReadNoLatticeMap

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestRZTGridBlueprint

test_construct

passed

armi.reactor.blueprints.tests.test_gridBlueprints.TestRZTGridBlueprint

test_geomFile

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_bothU235ZrWtFracModification

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_checkByComponentMaterialInput

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_filterMaterialInput

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_invalidComponentModification

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_invalidMatModName

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_invalidMatModType

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_matModsUpTheMRO

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_materialModificationLength

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_noMaterialModifications

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_theoreticalDensity

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_u235_wt_frac_byComponent_modification1

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_u235_wt_frac_byComponent_modification2

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_u235_wt_frac_modification

passed

armi.reactor.blueprints.tests.test_materialModifications.TestMaterialModifications

test_zrWtFracModification

passed

armi.reactor.blueprints.tests.test_reactorBlueprints.TestReactorBlueprints

test_construct

passed

armi.nuclearDataIO.tests.test_xsLibraries.Gamiso_Merge_Tests

test_canRemoveIsotopes

passed

armi.reactor.blueprints.tests.test_reactorBlueprints.TestReactorBlueprints

test_excoreStructure

passed

armi.reactor.blueprints.tests.test_reactorBlueprints.TestReactorBlueprints

test_materialDataSummary

passed

armi.nuclearDataIO.tests.test_xsLibraries.Gamiso_Merge_Tests

test_cannotMergeXSLibWithSameNuclideNames

passed

armi.reactor.blueprints.tests.test_reactorBlueprints.TestReactorBlueprints

test_simpleRead

passed

armi.reactor.blueprints.tests.test_reactorBlueprints.TestReactorBlueprints

test_spentFuelPool

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getAllNuclidesByTemperatureInCNone

passed

armi.reactor.converters.parameterSweeps.tests.test_paramSweepConverters.TestParamSweepConverters

test_neutronicConvergenceModifier

passed

armi.nuclearDataIO.tests.test_xsLibraries.Gamiso_Merge_Tests

test_cannotMergeXSLibxWithDifferentGroupStructure

passed

armi.reactor.converters.parameterSweeps.tests.test_paramSweepConverters.TestParamSweepConverters

test_paramSweepConverter

passed

armi.reactor.converters.parameterSweeps.tests.test_paramSweepConverters.TestParamSweepConverters

test_settingsModifier

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestAxialExpansionHeight

test_AssemblyAxialExpansionHeight

passed

armi.nuclearDataIO.tests.test_xsLibraries.Gamiso_Merge_Tests

test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_computeThermalExpansionFactors

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_noMovementACLP

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_prescribedExpansionContractionConservation

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_reset

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_targetComponentMassConservation

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getAvgNuclideTemperatureInC

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_thermalExpansionContractionConservation_complex

passed

armi.nuclearDataIO.tests.test_xsLibraries.Gamiso_Merge_Tests

test_mergeTwoXSLibFiles

passed

armi.nuclearDataIO.tests.test_xsLibraries.Combined_Merge_Tests

test_mergeAllXSLibFiles

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getDetailedFPDensities

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getDetailedFissionProducts

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_getMicroXS

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_getXS

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_2dXsArrangementIsCorrect

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_createFromLabelFailsOnBadName

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_creatingNuclidesDoesNotMessWithUnderlyingNuclideDict

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_isoaaDetails

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_modifyingNuclideAttributesUpdatesTheIsotxsNuclide

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_newLabelsDontCauseWarnings

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_nuclideBaseMethodsShouldNotFail

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_oldLabelsCauseWarnings

passed

armi.nuclearDataIO.tests.test_xsNuclides.NuclideTests

test_nuclide_scatterXsArrangementIsCorrect

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshots

test_atEOL

passed

armi.bookkeeping.db.tests.test_database3.TestDatabase

test_loadSortSetting

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshots

test_createInterfaces

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshots

test_createInterfacesDisabled

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshots

test_mainOperate

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshots

test_setStateToDefault

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getDetailedFissionProductsPass

passed

armi.operators.tests.test_operatorSnapshots.TestOperatorSnapshotsSettings

test_getOperatorClassFromSettings

passed

armi.operators.tests.test_operators.OperatorTests

test_addInterfaceSubclassCollision

passed

armi.operators.tests.test_operators.OperatorTests

test_getActiveInterfaces

passed

armi.operators.tests.test_operators.OperatorTests

test_interfaceIsActive

passed

armi.operators.tests.test_operators.OperatorTests

test_loadStateError

passed

armi.operators.tests.test_operators.OperatorTests

test_operatorData

passed

armi.operators.tests.test_operators.OperatorTests

test_orderedInterfaces

passed

armi.operators.tests.test_operators.OperatorTests

test_setStateToDefault

passed

armi.operators.tests.test_operators.OperatorTests

test_snapshotRequest

passed

armi.operators.tests.test_operators.TestCreateOperator

test_createOperator

passed

armi.operators.tests.test_operators.TestTightCoupling

test_computeTightCouplingConvergence

passed

armi.operators.tests.test_operators.TestTightCoupling

test_couplingIsActive

passed

armi.operators.tests.test_operators.TestTightCoupling

test_getStepLengths

passed

armi.operators.tests.test_operators.TestTightCoupling

test_performTightCoupling_Inactive

passed

armi.operators.tests.test_operators.TestTightCoupling

test_performTightCoupling_NoWriteDB

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getDriverBlock

passed

armi.operators.tests.test_operators.TestTightCoupling

test_performTightCoupling_WriteDB

passed

armi.operators.tests.test_operators.TestTightCoupling

test_performTightCoupling_notConverged

passed

armi.operators.tests.test_operators.TestTightCoupling

test_performTightCoupling_skip

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getAvailabilityFactors

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getBurnSteps

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getCycleLengths

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getCycleNames

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getMaxBurnSteps

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getPowerFractions

passed

armi.operators.tests.test_operators.CyclesSettingsTests

test_getStepLengths

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestConservation

test_thermalExpansionContractionConservation_simple

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestManageCoreMesh

test_componentConservation

passed

armi.operators.tests.test_operators.TestInterfaceAndEventHeaders

test_expandCycleAndTimeNodeArgs_Coupled

passed

armi.operators.tests.test_operators.TestInterfaceAndEventHeaders

test_expandCycleAndTimeNodeArgs_Cycle

passed

armi.operators.tests.test_operators.TestInterfaceAndEventHeaders

test_expandCycleAndTimeNodeArgs_Empty

passed

armi.operators.tests.test_operators.TestInterfaceAndEventHeaders

test_expandCycleAndTimeNodeArgs_EveryNode

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestOptimalAssemblyRotation

test_flatPowerNoRotation

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_getFuelTemperature

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_isCriticalBucklingSearchActive

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_isGammaXSGenerationEnabled

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestOptimalAssemblyRotation

test_maxBurnupAtCenterNoRotation

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_isSourceDriven

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestOptimalAssemblyRotation

test_mismatchPinPowersAndLocations

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestManageCoreMesh

test_manageCoreMesh

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_latticePhysicsWriter

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_auxData

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_computeParents

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestOptimalAssemblyRotation

test_noBlocksWithBurnup

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_deleting

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_fileName

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_getArrayShape

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_getH5File

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_setBlockNeutronVelocities

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_grabLocalCommitHash

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_loadBlueprints

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_loadCS

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestOptimalAssemblyRotation

test_oppositeRotation

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_loadOperator

passed

armi.physics.neutronics.latticePhysics.tests.test_latticeWriter.TestLatticePhysicsWriter

test_writeTitle

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestFuelHandlerMgmtTools

test_buRotationWithFreshFeed

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_AssemblyAxialExpansionException

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_determineLinked

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_getLinkedComponents

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_isFuelLocked

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_isTopDummyBlockPresent

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_setExpansionFactors

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_updateComponentTempsBy1DTempFieldRuntimeError

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestExceptions

test_updateComponentTempsBy1DTempFieldValueError

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_determineTargetComponent

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_determineTargetComponentBlockWithMultipleFlags

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_manuallySetTargetComponent

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_specifyTargetComponent_NotFound

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_specifyTargetComponent_singleSolid

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestDetermineTargetComponent

test_specifyTargetComponet_MultipleFound

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestGetSolidComponents

test_getSolidComponents

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestInputHeightsConsideredHot

test_coldAssemblyExpansion

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_mergeHistory

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollection

test_add

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_open

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_prepRestartRun

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestFuelHandlerMgmtTools

test_buRotationWithStationaryRotation

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollection

test_getBlocksInGroup

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollection

test_is_pickleable

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.TestFuelHandlerMgmtTools

test_rotateInShuffleQueue

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionMedian

test_createRepresentativeBlock

passed

armi.physics.fuelCycle.tests.test_assemblyRotationAlgorithms.SimpleRotationTests

test_simpleAssemblyRotation

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionMedian

test_getBlockNuclideTemperature

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_dischargeSwap

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionAverage

test_checkBlockSimilarity

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionAverage

test_createRepresentativeBlock

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionAverage

test_createRepresentativeBlockDissimilar

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionAverage

test_performAverageByComponent

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestComponentAveraging

test_getAverageComponentNumberDensities

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestComponentAveraging

test_getAverageComponentTemperature

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestComponentAveraging

test_getAverageComponentTemperatureNoMass

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestComponentAveraging

test_getAverageComponentTemperatureVariedWeights

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionComponentAverage

test_ComponentAverageRepBlock

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_dischargeSwapIncompatibleStationaryBlocks

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionComponentAverage1DCylinder

test_ComponentAverage1DCylinder

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_readInputsFromDB

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_replaceNones

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_splitDatabase

passed

armi.bookkeeping.db.tests.test_database3.TestDatabaseSmaller

test_writeToDB

passed

armi.bookkeeping.db.tests.test_database3.TestWriteReadDatabase

test_badData

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionComponentAverage1DCylinder

test_ComponentAverageDuctHet1DCylinder

passed

armi.bookkeeping.db.tests.test_database3.TestWriteReadDatabase

test_readWriteRoundTrip

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionComponentAverage1DCylinder

test_checkComponentConsistency

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterfaceBOL

test_interactBOL

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_demonstrateWritingInteractions

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_distributable

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_interactEveryNodeReturnTightCoupling

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_noSyncDbAfterWrite

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_syncDbAfterWrite

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_findByCoords

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionFluxWeightedAverage

test_createRepresentativeBlock

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestBlockCollectionFluxWeightedAverage

test_invalidWeights

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_addXsGroupsFromBlocks

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseInterface

test_timeNodeLoop_tightCoupling

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseWriter

test_getHistory

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_AnnularHexOverlappingThickAnnularHex

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_annularPinNotOverlappingWithAnnulus

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_annularPinOverlappingWithAnnuls

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_differentMultNotOverlapping

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_liquids

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_overlappingSolidPins

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_solidPinNotOverlappingAnnulus

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_solidPinOverlappingWithAnnulus

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_thinAnnularPinOverlappingWithThickAnnulus

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestComponentLinks

test_unshapedComponentAndCircle

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestAxialLinkHelper

test_construct

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestAxialLinkHelper

test_override

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestBlockLink

test_emptyBlocks

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestBlockLink

test_multiBlock

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestBlockLink

test_onAssembly

passed

armi.reactor.converters.tests.test_axialExpansionChanger.TestBlockLink

test_singleBlock

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_buildInsideDuct

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_build_NthRing

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_convert

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_calcWeightedBurnup

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseWriter

test_getHistoryByLocation

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_convertCartesianLatticeWithFuelDriver

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_copyPregeneratedFiles

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_convertHexWithFuelDriver

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseWriter

test_metaDataEndFail

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_findHighBu

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_createRepresentativeBlocksUsingExistingBlocks

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseWriter

test_metaData_endSuccessfully

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseWriter

test_writeSystemAttributes

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_convertHexWithFuelDriverOnNegativeComponentAreaBlock

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_createRepresentativeBlocksUsingExistingBlocksDisableValidBlockTypes

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_findInSFP

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveIntoNegativeArea

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveIntoZeroArea

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveLinerIntoClad

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveMultiple

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveNegativeArea

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveWireIntoCoolant

passed

armi.reactor.converters.tests.test_blockConverter.TestBlockConverter

test_dissolveZeroArea

passed

armi.reactor.converters.tests.test_blockConverter.TestToCircles

test_fromHex

passed

armi.reactor.converters.tests.test_blockConverter.TestToCircles

test_fromRingOfRods

passed

armi.reactor.converters.tests.test_geometryConverters.TestGeometryConverters

test_addRing

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_disableEnvGroupUpdates

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_findMany

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_enableEnvGroupUpdates

passed

armi.reactor.converters.tests.test_geometryConverters.TestGeometryConverters

test_getAssembliesInSector

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_getNextAvailableXsType

passed

armi.reactor.converters.tests.test_geometryConverters.TestGeometryConverters

test_setNumberOfFuelAssems

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_getRepresentativeBlocks

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_findWithMinMax

passed

armi.reactor.converters.tests.test_geometryConverters.TestHexToRZConverter

test_convert

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_growToFullCore

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_growToFullCoreFromFactory

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_interactAllCoupled

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_getAssembliesInRings

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_interactBOC

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_growToFullCoreFromFactoryWithCS

passed

armi.reactor.converters.tests.test_geometryConverters.TestHexToRZConverter

test_createHomogenizedRZTBlock

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_growToFullCoreWithCS

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_interactBOL

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_getFactorList

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_loadReadOnly

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_interactEveryNode

passed

armi.reactor.converters.tests.test_geometryConverters.TestEdgeAssemblyChanger

test_edgeAssemblies

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_readWithoutInputs

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_interactFirstCoupledIteration

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_getParamMax

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_readWritten

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_setBuGroupBounds

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_timesteps

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestDatabaseReading

test_variousTypesWork

passed

armi.reactor.converters.tests.test_geometryConverters.TestThirdCoreHexToFullCoreChanger

test_growToFullCoreFromThirdCore

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestBadName

test_badDBName

passed

armi.bookkeeping.db.tests.test_databaseInterface.TestStandardFollowOn

test_standardRestart

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_setTempGroupBounds

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_interactBOC

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_updateBurnupGroups

passed

armi.bookkeeping.db.tests.test_jaggedArray.TestJaggedArray

test_backwardsCompatible

passed

armi.bookkeeping.db.tests.test_jaggedArray.TestJaggedArray

test_flatten

passed

armi.bookkeeping.db.tests.test_jaggedArray.TestJaggedArray

test_roundTrip

passed

armi.bookkeeping.db.tests.test_jaggedArray.TestJaggedArray

test_roundTripBool

passed

armi.bookkeeping.db.tests.test_layout.TestLocationPacking

test_close

passed

armi.bookkeeping.db.tests.test_layout.TestLocationPacking

test_locationPacking

passed

armi.bookkeeping.db.tests.test_layout.TestLocationPacking

test_locationPackingOldVersion

passed

armi.bookkeeping.db.tests.test_layout.TestLocationPacking

test_locationPackingOlderVersions

passed

armi.bookkeeping.db.tests.test_passiveDBLoadPlugin.TestPassiveDBLoadPlugin

test_passiveDBLoadPlugin

passed

armi.bookkeeping.db.tests.test_passiveDBLoadPlugin.TestPassThroughYamlize

test_passThroughYamlizeExample1

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_neutronicsPlotFunctions

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_reportBasics

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManager

test_xsgmIsRunBeforeXS

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_reportContents

passed

armi.reactor.converters.tests.test_geometryConverters.TestThirdCoreHexToFullCoreChanger

test_initNewFullReactor

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestCrossSectionGroupManagerWithTempGrouping

test_updateEnvironmentGroups

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_isAssemblyInAZone

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_reportContentsEnd

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_reportLogs

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestXSNumberConverters

test_conversion

passed

armi.physics.neutronics.tests.test_crossSectionManager.TestXSNumberConverters

test_conversion_2digit

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_badCrossSections

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_crossSections

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_homogeneousXsDefaultSettingAssignment

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_optionalKey

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_pregeneratedCrossSections

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_pregeneratedFluxInputs

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_prioritization

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_setDefaultSettingsByLowestEnvGroupHomogeneous

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_tableCreation

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestCrossSectionSettings

test_setDefaultSettingsByLowestEnvGroupOneDimensional

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestXSSettings

test_caseSettings

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestXSSettings

test_csBlockRepresentation

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestXSSettings

test_csBlockRepresentationFileLocation

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestXSSettings

test_xsSettingsSetDefault

passed

armi.physics.neutronics.tests.test_crossSectionSettings.TestXSSettings

test_yamlIO

passed

armi.physics.neutronics.tests.test_crossSectionTable.TestCrossSectionTable

test_isotopicDepletionInterface

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_timeSeries

passed

armi.physics.neutronics.tests.test_crossSectionTable.TestCrossSectionTable

test_makeTable

passed

armi.bookkeeping.report.tests.test_newReport.TestReportContentCreation

test_writeReports

passed

armi.bookkeeping.report.tests.test_report.TestReportingUtils

test_getNodeName

passed

armi.bookkeeping.report.tests.test_report.TestReportingUtils

test_getSystemInfo

passed

armi.bookkeeping.report.tests.test_report.TestReportingUtils

test_getSystemInfoLinux

passed

armi.bookkeeping.report.tests.test_report.TestReportingUtils

test_getSystemInfoMac

passed

armi.bookkeeping.report.tests.test_report.TestReportingUtils

test_getSystemInfoWindows

passed

armi.bookkeeping.report.tests.test_report.TestReport

test_getData

passed

armi.bookkeeping.report.tests.test_report.TestReport

test_reactorSpecificReporting

passed

armi.bookkeeping.report.tests.test_report.TestReport

test_setData

passed

armi.bookkeeping.report.tests.test_report.TestReport

test_writeWelcomeHeaders

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_distributableReportInt

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_interactBOC

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_interactBOLReportInt

passed

armi.physics.neutronics.tests.test_energyGroups.TestEnergyGroups

test_consistenciesBetweenGroupStructureAndGroupStructureType

passed

armi.physics.neutronics.tests.test_energyGroups.TestEnergyGroups

test_getFastFluxGroupCutoff

passed

armi.physics.neutronics.tests.test_energyGroups.TestEnergyGroups

test_invalidGroupStructureType

passed

armi.physics.neutronics.tests.test_macroXSGenerationInterface.TestMacroXSGenerationInterface

test_macroXSGenerationInterfaceBasics

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestPlugin

test_defineBlueprintsSections

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestPlugin

test_exposeInterfaces

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestNeutronicsPlugin

test_customSettingObjectIO

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestNeutronicsPlugin

test_customSettingRoundTrip

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestNeutronicsPlugin

test_defineBlueprintsSections

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestNeutronicsPlugin

test_exposeInterfaces

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.TestNeutronicsPlugin

test_neutronicsSettingsLoaded

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.NeutronicsReactorTests

test_kineticsParameterAssignment

passed

armi.physics.neutronics.tests.test_neutronicsPlugin.NeutronicsReactorTests

test_neutronicsSettingsValidators

passed

armi.reactor.converters.tests.test_geometryConverters.TestThirdCoreHexToFullCoreChanger

test_skipGrowToFullCoreWhenAlreadyFullCore

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_linPowByPin

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_interactEOC

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_interactEOL

passed

armi.physics.tests.test_executers.TestExecutionOptions

test_runningDirectoryPath

passed

armi.physics.tests.test_executers.TestExecuters

test_collectInputsAndOutputs

passed

armi.physics.tests.test_executers.TestExecuters

test_runExternalExecutable

passed

armi.physics.tests.test_executers.TestExecuters

test_updateRunDir

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestPlugin

test_defineBlueprintsSections

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestPlugin

test_exposeInterfaces

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestThermalHydraulicsPlugin

test_defineBlueprintsSections

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestThermalHydraulicsPlugin

test_exposeInterfaces

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestThermalHydraulicsPlugin

test_thermalHydraulicsSettingsLoaded

passed

armi.physics.thermalHydraulics.tests.test_thermalHydraulicsPlugin.TestThermalHydraulicsPlugin

test_thermalHydraulicsSettingsSet

passed

armi.reactor.blueprints.tests.test_assemblyBlueprints.TestMaterialModifications

test_checkParamConsistency

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_blockLattice

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_constructSpatialGrid

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_densityConsistentWithComponentConstructor

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_interactEveryNode

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_explicitFlags

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_printReports

passed

armi.bookkeeping.report.tests.test_report.TestReportInterface

test_writeReports

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_getLocatorsAtLatticePositions

passed

armi.reactor.blueprints.tests.test_blockBlueprints.TestGriddedBlock

test_nonLatticeComponentHasRightMult

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_componentDimensions

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_getAssemblyTypeBySpecifier

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_nuclides

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_roundTripCompleteBP

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_specialIsotopicVectors

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprints

test_traceNuclides

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_assemblyParameters

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_cladding_invalid

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_componentGroupInput

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_components

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_customIsotopics

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_merge

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_noDuplicateKeysInYamlBlueprints

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_nuclideFlags

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_nuclidesMc2v2

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_nuclidesMc2v3

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_topLevelComponentInput

passed

armi.reactor.blueprints.tests.test_blueprints.TestBlueprintsSchema

test_withoutBlocks

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_autoDepletable

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_componentInitializationAmericiumCustomIsotopics

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_componentInitializationControlCustomIsotopics

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_componentInitializationIncompleteBurnChain

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_componentInitializationThoriumBurnCustomIsotopics

passed

armi.reactor.blueprints.tests.test_componentBlueprint.TestComponentBlueprint

test_componentInitializationThoriumNoBurnCustomIsotopics

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialBinsLargeCore

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_customDensityLogsAndErrors

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_densitiesAppliedToNonCustomMaterials

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_densitiesAppliedToNonCustomMaterialsFluid

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_expandedNatural

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_infDiluteAreOnlyNatural

passed

armi.reactor.blueprints.tests.test_customIsotopics.TestCustomIsotopics

test_massFractionsAreApplied

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_iteration

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_len

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_makeAxialSnapList

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_linPowByPinGamma

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_moveTo

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_notesParameter

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_pinPlenumVolume

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_reattach

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_reestablishBlockOrder

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_renameBlocksAccordingToAssemblyNum

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_rotate

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_scaleParamsWhenMoved

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_snapAxialMeshToReference

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_updateFromAssembly

passed

armi.reactor.tests.test_assemblies.AssemblyInReactor_TestCase

test_snapAxialMeshToReferenceConservingMassBasedOnBlockIgniter

passed

armi.reactor.tests.test_assemblies.AssemblyInReactor_TestCase

test_snapAxialMeshToReferenceConservingMassBasedOnBlockShield

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_linPowByPinNeutron

passed

armi.reactor.tests.test_assemblies.AnnularFuelTestCase

test_areaCheck

passed

armi.reactor.tests.test_blocks.TestDetailedNDensUpdate

test_updateDetailedNdens

passed

armi.reactor.tests.test_blocks.TestValidateSFPSpatialGrids

test_SFPSpatialGridExists

passed

armi.reactor.tests.test_blocks.TestValidateSFPSpatialGrids

test_noSFPExists

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_100_getPinPitch

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_101_getPitch

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_102_setPitch

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_106_getAreaFractions

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_27b_setEnvGroup

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_add

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_adjustDensity

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_adjustUEnrich

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_clearDensity

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_completeInitialLoading

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_consistentAreaWithOverlappingComponents

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_consistentMassDensityVolumeBetweenColdBlockAndColdComponents

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_consistentMassDensityVolumeBetweenHotBlockAndHotComponents

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_duplicate

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_expandAllElementalsToIsotopics

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_expandElementalToIsotopics

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponent

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentAreaFrac

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentByName

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentNames

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponents

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentsInLinkedOrder

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialBinsSmallCore

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentsOfMaterial

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getComponentsOfShape

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getDimensions

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_outage

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getFissileMassEnrich

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getFlowArea

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getFlowAreaPerPin

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getHMDens

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getHydraulicDiameter

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getMass

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getMasses

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getMfp

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getMgFlux

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialCoordinatesLargeCore

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getMicroSuffix

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getNumComponents

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getNumPins

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getNumberDensity

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getNumberOfAtoms

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getPlenumPin

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getPu

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getReactionRates

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getSmearDensity

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getSmearDensityEdgeCases

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getSmearDensityMultipleLiner

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getSortedComponentsInsideOfComponentClad

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getSortedComponentsInsideOfComponentDuct

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getTotalMass

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getTotalNDens

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getType

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getUraniumMassEnrich

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getUraniumNumEnrich

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getVolumeFractionWithoutParent

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getVolumeFractionsWithZeroHeight

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getWettedPerimeter

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getWettedPerimeterCircularInnerDuct

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getWettedPerimeterDepletable

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getWettedPerimeterHexInnerDuct

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_getXsType

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_hasComponents

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_outageEdgeCase

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_hasFlags

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_hasPinPitch

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_homogenizedMixture

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_mergeWithBlock

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_pinMgFluxes

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_removeMass

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_replaceBlockWithBlock

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setBuLimitInfo

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setImportantParams

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setLinPowByPin

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setLocation

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setMass

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setNumberDensities

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setNumberDensity

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setPitch

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setType

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_setZeroHeight

passed

armi.reactor.tests.test_blocks.Block_TestCase

test_timeNodeParams

passed

armi.reactor.tests.test_blocks.BlockInputHeightsTests

test_foundReactor

passed

armi.reactor.tests.test_blocks.BlockInputHeightsTests

test_noBlueprints

passed

armi.reactor.tests.test_blocks.BlockEnergyDepositionConstants

test_getCaptureEnergyGenerationConstants

passed

armi.reactor.tests.test_blocks.BlockEnergyDepositionConstants

test_getFissionEnergyDepositionConstants

passed

armi.reactor.tests.test_blocks.BlockEnergyDepositionConstants

test_getGammaEnergyDepositionConstants

passed

armi.reactor.tests.test_blocks.BlockEnergyDepositionConstants

test_getNeutronEnergyDepositionConstants

passed

armi.reactor.tests.test_blocks.BlockEnergyDepositionConstants

test_getTotalEnergyGenerationConstants

passed

armi.reactor.tests.test_blocks.TestNegativeVolume

test_negativeVolume

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_block_dims

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_component_type

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_coords

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getArea

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getDuctPitch

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getNumPins

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getPinCenterFlatToFlat

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getPinCoords

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getPinCoordsAndLocsAgree

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getPinLocations

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_getPitchHomogeneousBlock

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_gridCreation

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_gridNotCreatedMultipleMultiplicities

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_gridNumPinsAndLocations

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_retainState

passed

armi.reactor.tests.test_blocks.HexBlock_TestCase

test_symmetryFactor

passed

armi.reactor.tests.test_blocks.TestHexBlockOrientation

test_validateReactorCornersUp

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_processMoveList

passed

armi.reactor.tests.test_blocks.TestHexBlockOrientation

test_validateReactorFlatsUp

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_axial

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_getHydraulicDiameter

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_getThetaRZGrid

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_getWettedPerimeter

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_radii

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_theta

passed

armi.reactor.tests.test_blocks.ThRZBlock_TestCase

test_verifyBlockDims

passed

armi.reactor.tests.test_blocks.CartesianBlock_TestCase

test_getCartesianGrid

passed

armi.reactor.tests.test_blocks.CartesianBlock_TestCase

test_getHydraulicDiameter

passed

armi.reactor.tests.test_blocks.CartesianBlock_TestCase

test_getPitchHomogeneousBlock

passed

armi.reactor.tests.test_blocks.CartesianBlock_TestCase

test_getPitchSquare

passed

armi.reactor.tests.test_blocks.CartesianBlock_TestCase

test_getWettedPerimeter

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_coldMass

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_dimensionDuctHeatup

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_heightExpansionDifferences

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_massCladHeatup

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_massConsistency

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_massCoolHeatup

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_massDuctHeatup

passed

armi.reactor.tests.test_blocks.MassConservationTests

test_massFuelHeatup

passed

armi.reactor.tests.test_components.TestComponentFactory

test_componentInitializationAndDuplication

passed

armi.reactor.tests.test_components.TestComponentFactory

test_factory

passed

armi.reactor.tests.test_components.TestComponentFactory

test_factoryBadShapeName

passed

armi.reactor.tests.test_components.TestComponentFactory

test_invalidCoolantComponentAssignment

passed

armi.reactor.tests.test_components.TestComponentNDens

test_changeNDensByFactor

passed

armi.reactor.tests.test_components.TestComponentNDens

test_changeNDensByFactorWithExtraParams

passed

armi.reactor.tests.test_components.TestComponentNDens

test_setNumberDensities

passed

armi.reactor.tests.test_components.TestComponentNDens

test_setNumberDensitiesWithExpansion

passed

armi.reactor.tests.test_components.TestComponentNDens

test_setNumberDensity

passed

armi.reactor.tests.test_components.TestComponent

test_initializeComponentMaterial

passed

armi.reactor.tests.test_components.TestComponent

test_solid_material

passed

armi.reactor.tests.test_components.TestNullComponent

test_cmp

passed

armi.reactor.tests.test_components.TestNullComponent

test_getDimension

passed

armi.reactor.tests.test_components.TestNullComponent

test_nonzero

passed

armi.reactor.tests.test_components.TestUnshapedComponent

test_component_less_than

passed

armi.reactor.tests.test_components.TestUnshapedComponent

test_fromComponent

passed

armi.reactor.tests.test_components.TestUnshapedComponent

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestUnshapedComponent

test_getComponentArea

passed

armi.reactor.tests.test_components.TestShapedComponent

test_density

passed

armi.reactor.tests.test_components.TestShapedComponent

test_densityConsistent

passed

armi.reactor.tests.test_components.TestShapedComponent

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestShapedComponent

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestDerivedShape

test_computeVolume

passed

armi.reactor.tests.test_components.TestDerivedShape

test_density

passed

armi.reactor.tests.test_components.TestDerivedShape

test_densityConsistent

passed

armi.reactor.tests.test_components.TestDerivedShape

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestDerivedShape

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestDerivedShape

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestDerivedShapeGetArea

test_getAreaColdTrue

passed

armi.reactor.tests.test_components.TestComponentSort

test_sorting

passed

armi.reactor.tests.test_components.TestCircle

test_badComponentName

passed

armi.reactor.tests.test_components.TestCircle

test_changeNumberDensities

passed

armi.reactor.tests.test_components.TestCircle

test_componentInteractionsLinkingByDimensions

passed

armi.reactor.tests.test_components.TestCircle

test_componentInteractionsLinkingBySubtraction

passed

armi.reactor.tests.test_components.TestCircle

test_density

passed

armi.reactor.tests.test_components.TestCircle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestCircle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestCircle

test_fuelMass

passed

armi.reactor.tests.test_components.TestCircle

test_getArea

passed

armi.reactor.tests.test_components.TestCircle

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestCircle

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestCircle

test_getDimension

passed

armi.reactor.tests.test_components.TestCircle

test_getNumberDensities

passed

armi.reactor.tests.test_components.TestCircle

test_getThermalExpansionFactorConservedMassByLinearExpansionPercent

passed

armi.reactor.tests.test_components.TestCircle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestCircle

test_theoreticalDensitySetter

passed

armi.reactor.tests.test_components.TestCircle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestCircle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestComponentExpansion

test_B4CExpansion

passed

armi.reactor.tests.test_components.TestComponentExpansion

test_HT9Expansion

passed

armi.reactor.tests.test_components.TestComponentExpansion

test_UZrExpansion

passed

armi.reactor.tests.test_components.TestTriangle

test_density

passed

armi.reactor.tests.test_components.TestTriangle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestTriangle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestTriangle

test_getArea

passed

armi.reactor.tests.test_components.TestTriangle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestTriangle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestTriangle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestRectangle

test_density

passed

armi.reactor.tests.test_components.TestRectangle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestRectangle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestRectangle

test_getArea

passed

armi.reactor.tests.test_components.TestRectangle

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestRectangle

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestRectangle

test_negativeArea

passed

armi.reactor.tests.test_components.TestRectangle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestRectangle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestRectangle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_density

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_getArea

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestSolidRectangle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestSquare

test_density

passed

armi.reactor.tests.test_components.TestSquare

test_densityConsistent

passed

armi.reactor.tests.test_components.TestSquare

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestSquare

test_getArea

passed

armi.reactor.tests.test_components.TestSquare

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestSquare

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestSquare

test_negativeArea

passed

armi.reactor.tests.test_components.TestSquare

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestSquare

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestSquare

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestCube

test_density

passed

armi.reactor.tests.test_components.TestCube

test_densityConsistent

passed

armi.reactor.tests.test_components.TestCube

test_getVolume

passed

armi.reactor.tests.test_components.TestCube

test_negativeVolume

passed

armi.reactor.tests.test_components.TestCube

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestCube

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestCube

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHexagon

test_density

passed

armi.reactor.tests.test_components.TestHexagon

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHexagon

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHexagon

test_getArea

passed

armi.reactor.tests.test_components.TestHexagon

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestHexagon

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHexagon

test_getPerimeter

passed

armi.reactor.tests.test_components.TestHexagon

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHexagon

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHexagon

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_density

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialCoordinatesSmallCore

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_getArea

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHoledHexagon

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_density

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_getArea

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHexHoledCircle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_density

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_getArea

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHoledRectangle

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHoledSquare

test_density

passed

armi.reactor.tests.test_components.TestHoledSquare

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHoledSquare

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHoledSquare

test_getArea

passed

armi.reactor.tests.test_components.TestHoledSquare

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestHoledSquare

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHoledSquare

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHoledSquare

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHoledSquare

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestHelix

test_density

passed

armi.reactor.tests.test_components.TestHelix

test_densityConsistent

passed

armi.reactor.tests.test_components.TestHelix

test_dimensionThermallyExpands

passed

armi.reactor.tests.test_components.TestHelix

test_getArea

passed

armi.reactor.tests.test_components.TestHelix

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestHelix

test_getCircleInnerDiameter

passed

armi.reactor.tests.test_components.TestHelix

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestHelix

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestHelix

test_validParameters

passed

armi.reactor.tests.test_components.TestHelix

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestSphere

test_density

passed

armi.reactor.tests.test_components.TestSphere

test_densityConsistent

passed

armi.reactor.tests.test_components.TestSphere

test_getVolume

passed

armi.reactor.tests.test_components.TestSphere

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestSphere

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestSphere

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestRadialSegment

test_density

passed

armi.reactor.tests.test_components.TestRadialSegment

test_densityConsistent

passed

armi.reactor.tests.test_components.TestRadialSegment

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestRadialSegment

test_getVolume

passed

armi.reactor.tests.test_components.TestRadialSegment

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestRadialSegment

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestRadialSegment

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_density

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_densityConsistent

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_getBoundingCircleOuterDiameter

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_getVolume

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_preserveMassDuringThermalExpansion

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_thermallyExpands

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_updateDims

passed

armi.reactor.tests.test_components.TestDifferentialRadialSegment

test_volumeAfterClearCache

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassEnrichment

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_U

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_U235

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_clear_ZR

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_invalid

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_leave_same

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_adjustMassFrac_set_ZR

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_finalizeLoadDBAdjustsTD

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_getEnrichment

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_setMassFrac

passed

armi.reactor.tests.test_components.TestMaterialAdjustments

test_setMassFracOnComponentMaterial

passed

armi.reactor.tests.test_components.TestPinQuantities

test_getPinMgFluxes

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_areChildernOfType

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_composite

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_containsAtLeastOneChildOfType

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_containsOnlyChildrenOfType

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_expandLFPs

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getBoundingCirlceOuterDiameter

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getChildren

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getIntegratedMgFlux

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getLumpedFissionProductsIfNecessaryNullCase

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getName

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getParamNames

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_getReactionRates

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_hasFlags

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_hasFlagsNoTypeSpecified

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_hasFlagsSubstring

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_iterComponents

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_nameContains

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_nucSpec

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_requiresLumpedFissionProducts

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_setChildrenLumpedFissionProducts

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_sort

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_syncParameters

passed

armi.reactor.tests.test_composites.TestCompositePattern

test_updateVolume

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_constituentReport

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialFlagsLargeCore

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getChildrenIncludeMaterials

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getFPMass

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getFissileMass

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getFuelMass

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getHMMass

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getMaxParam

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getMinParam

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_getNuclides

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_ordering

passed

armi.reactor.tests.test_composites.TestCompositeTree

test_summing

passed

armi.reactor.tests.test_composites.TestFlagSerializer

test_flagConversion

passed

armi.reactor.tests.test_composites.TestFlagSerializer

test_flagSerialization

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_containsHeavyMetal

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_copyParamsFrom

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_copyParamsToChildren

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_dimensionReport

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_getAtomicWeight

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_getNumberDensities

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_getNumberDensitiesWithExpandedFissionProducts

passed

armi.reactor.tests.test_composites.TestMiscMethods

test_setMass

passed

armi.reactor.tests.test_composites.TestGetReactionRateDict

test_getReactionRateDict

passed

armi.reactor.tests.test_excoreStructures.TestExcoreStructure

test_add

passed

armi.reactor.tests.test_excoreStructures.TestExcoreStructure

test_constructor

passed

armi.reactor.tests.test_excoreStructures.TestExcoreStructure

test_parentReactor

passed

armi.reactor.tests.test_excoreStructures.TestExcoreStructure

test_representation

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_add

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_constructor

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_getAssembly

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_getNextLocation

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_normalizeNames

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_representation

passed

armi.reactor.tests.test_excoreStructures.TestSpentFuelPool

test_updateNumberOfColumns

passed

armi.reactor.tests.test_excoreStructures.TestExcoreCollection

test_addLikeAttribute

passed

armi.reactor.tests.test_excoreStructures.TestExcoreCollection

test_addLikeDict

passed

armi.reactor.tests.test_flags.TestFlags

test_convertsStringsWithNonFlags

passed

armi.reactor.tests.test_flags.TestFlags

test_defaultIsFalse

passed

armi.reactor.tests.test_flags.TestFlags

test_flagsDefinedWithNumbers

passed

armi.reactor.tests.test_flags.TestFlags

test_flagsToAndFromString

passed

armi.reactor.tests.test_flags.TestFlags

test_fromString

passed

armi.reactor.tests.test_flags.TestFlags

test_fromStringStrict

passed

armi.reactor.tests.test_flags.TestFlags

test_fromStringWithNumbers

passed

armi.reactor.tests.test_flags.TestFlags

test_isPickleable

passed

armi.reactor.tests.test_flags.TestFlags

test_lookup

passed

armi.reactor.tests.test_flags.TestFlags

test_toStringAlphabetical

passed

armi.reactor.tests.test_geometry.TestGeomType

test_fromStr

passed

armi.reactor.tests.test_geometry.TestGeomType

test_label

passed

armi.reactor.tests.test_geometry.TestGeomType

test_str

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_SymmetryFactor

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_baseConstructor

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_checkValidGeomSymmetryCombo

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_domainTypeNulls

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_fromAny

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_fromStr

passed

armi.reactor.tests.test_geometry.TestSymmetryType

test_label

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_asciimap

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_growToFullCore

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_readAsciimap

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_readHexGeomXML

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_readReactor

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInput

test_yamlIO

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_readMoves

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInputTRZ

test_TRZyamlIO

passed

armi.reactor.tests.test_geometry.TestSystemLayoutInputTRZ

test_readTRZGeomXML

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_orientationVector

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_pinParametersUnmodified

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_pinRotationCoordinates

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_pinRotationLocations

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_rotateBoundaryParameters

passed

armi.reactor.tests.test_hexBlockRotate.HexBlockRotateTests

test_updateChildLocations

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_repeatShuffles

passed

armi.reactor.tests.test_hexBlockRotate.EmptyBlockRotateTest

test_orientation

passed

armi.reactor.tests.test_parameters.ParameterTests

test_attemptingToSetParamWithoutSetterFails

passed

armi.reactor.tests.test_parameters.ParameterTests

test_cannotCreateAttrbuteOnParameterCollectionSubclass

passed

armi.reactor.tests.test_parameters.ParameterTests

test_cannotCreateInstanceOf_NoDefault

passed

armi.reactor.tests.test_parameters.ParameterTests

test_cannotCreateInstanceOf_Undefined

passed

armi.reactor.tests.test_parameters.ParameterTests

test_cannotDefineParameterWithSameName

passed

armi.reactor.tests.test_parameters.ParameterTests

test_cannotDefineParameterWithSameNameForCollectionSubclass

passed

armi.reactor.tests.test_parameters.ParameterTests

test_categories

passed

armi.reactor.tests.test_parameters.ParameterTests

test_defaultLocation

passed

armi.reactor.tests.test_parameters.ParameterTests

test_getWithoutDefaultRaisesParameterError

passed

armi.reactor.tests.test_parameters.ParameterTests

test_mutableDefaultsNotSupported

passed

armi.reactor.tests.test_parameters.ParameterTests

test_paramDefinitionsCompose

passed

armi.reactor.tests.test_parameters.ParameterTests

test_paramPropertyDoesNotConflict

passed

armi.reactor.tests.test_parameters.ParameterTests

test_paramPropertyDoesNotConflictWithNoneDefault

passed

armi.reactor.tests.test_parameters.ParameterTests

test_parameterCollectionsHave__slots__

passed

armi.reactor.tests.test_parameters.ParameterTests

test_serializer_pack_unpack

passed

armi.reactor.tests.test_parameters.ParameterTests

test_setter

passed

armi.reactor.tests.test_parameters.ParameterTests

test_setterGetterBasics

passed

armi.reactor.tests.test_parameters.ParameterTests

test_writeSomeParamsToDB

passed

armi.reactor.tests.test_parameters.ParamCollectionWhere

test_complicated

passed

armi.reactor.tests.test_parameters.ParamCollectionWhere

test_onCategory

passed

armi.reactor.tests.test_parameters.ParamCollectionWhere

test_onLocation

passed

armi.reactor.tests.test_parameters.TestMakeParametersReadOnly

test_makeParametersReadOnly

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_addMoreNodes

passed

armi.reactor.converters.tests.test_meshConverters.TestRZReactorMeshConverter

test_meshByRingCompositionAxialFlagsSmallCore

passed

armi.reactor.converters.tests.test_pinTypeBlockConverters.TestPinTypeConverters

test_adjustCladThicknessByID

passed

armi.reactor.converters.tests.test_pinTypeBlockConverters.TestPinTypeConverters

test_adjustCladThicknessByOD

passed

armi.reactor.converters.tests.test_pinTypeBlockConverters.MassConservationTests

test_adjustSmearDensity

passed

armi.reactor.converters.tests.test_uniformMesh.TestConverterFactory

test_converterFactory

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTracker

test_calcMGFluence

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_addMultipleCores

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_applyThermalExpansion_CoreConstruct

passed

armi.reactor.converters.tests.test_uniformMesh.TestAssemblyUniformMesh

test_clearAssemblyState

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_transferDifferentNumberStationaryBlocks

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_buildManualZones

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_transferIncompatibleHeightStationaryBlocks

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_buildManualZonesEmpty

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_transferStationaryBlocks

passed

armi.reactor.converters.tests.test_uniformMesh.TestAssemblyUniformMesh

test_makeAssemUniformMeshParamMappingSameMesh

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTracker

test_getBlockInAssembly

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_transferUnalignedLocationStationaryBlocks

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_coreSfp

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_countBlocksOfType

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelHandler

test_width

passed

armi.reactor.converters.tests.test_uniformMesh.TestAssemblyUniformMesh

test_makeAssemWithUniformMesh

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_countFuelAxialBlocks

passed

armi.physics.fuelCycle.tests.test_fuelHandlers.TestFuelPlugin

test_settingsAreDiscovered

passed

armi.physics.fuelCycle.tests.test_hexAssemblyFuelMgmtUtils.TestHexAssemMgmtTools

test_buildConvergentRingSchedule

passed

armi.physics.fuelCycle.tests.test_hexAssemblyFuelMgmtUtils.TestHexAssemMgmtTools

test_buildRingSchedule

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_assemblyHasPinBurnups

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_assemblyHasPinPower

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupBlock

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupBlockNoBlocks

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupBlockNoBurnup

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupLocationFromComponents

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupLocatorMismatchedData

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_maxBurnupLocatorWithNoBurnup

passed

armi.physics.fuelCycle.tests.test_utils.FuelCycleUtilsTests

test_singleLocatorWithBurnup

passed

armi.physics.fuelPerformance.tests.test_executers.TestFuelPerformanceOptions

test_fuelPerformanceOptions

passed

armi.physics.fuelPerformance.tests.test_fuelPerformancePlugin.TestPlugin

test_defineBlueprintsSections

passed

armi.physics.fuelPerformance.tests.test_fuelPerformancePlugin.TestPlugin

test_exposeInterfaces

passed

armi.physics.fuelPerformance.tests.test_fuelPerformancePlugin.TestFuelPerformancePlugin

test_defineBlueprintsSections

passed

armi.physics.fuelPerformance.tests.test_fuelPerformancePlugin.TestFuelPerformancePlugin

test_exposeInterfaces

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_applyFuelDisplacement

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_gasConductivityCorrection_morph0

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_gasConductivityCorrection_morph1

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_gasConductivityCorrection_morph2

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_gasConductivityCorrection_morph3

passed

armi.physics.fuelPerformance.tests.test_fuelPerformanceUtils.TestFuelPerformanceUtils

test_gasConductivityCorrection_morph4

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelLumpedFissionProducts

test_fpApplication

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelLumpedFissionProducts

test_getAllFissionProductNames

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelLumpedFissionProducts

test_loadGlobalLFPsFromFile

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelExplicitMC2Library

test_nuclideFlags

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelExplicitMC2Library

test_nuclidesInModelFuel

passed

armi.physics.neutronics.fissionProductModel.tests.test_fissionProductModel.TestFissionProductModelExplicitMC2LibrarySlower

test_nuclidesInModelAllDepletableBlocks

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_createAssemblyOfType

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestFissionProductDefinitionFile

test_createLFPs

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestFissionProductDefinitionFile

test_createReferenceLFPs

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProduct

test_gaseousYieldFraction

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProduct

test_getYield

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProduct

test_isGas

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductCollection

test_duplicate

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductCollection

test_getAllFissionProductNames

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductCollection

test_getAllFissionProductNuclideBases

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductCollection

test_getMassFrac

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductCollection

test_getNumberDensities

passed

armi.physics.neutronics.fissionProductModel.tests.test_lumpedFissionProduct.TestLumpedFissionProductsFromReferenceFile

test_fissionProductYields

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getReactor

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTracker

test_historyParameters

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_createAssemblyOfTypeExpandedCore

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getScalarEvolution

passed

armi.reactor.converters.tests.test_uniformMesh.TestAssemblyUniformMesh

test_makeAssemWithUniformMeshSubmesh

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_createFreshFeed

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getSetParameters

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_differentNuclideModels

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getSymmetryFactor

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getTotalParam

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_growToFullCore

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshGenerator

test_computeAverageAxialMesh

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshGenerator

test_filterMesh

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshGenerator

test_filteredTopAndBottom

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshGenerator

test_generateCommonMesh

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTracker

test_historyReport

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshComponents

test_blueprintCopy

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMesh

test_applyStateToOriginal

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_ifMissingSpatialGrid

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMesh

test_convertNumberDensities

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_factorySortSetting

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_isPickleable

passed

armi.reactor.converters.tests.test_uniformMesh.TestCalcReationRates

test_calcReactionRatesBlockList

passed

armi.reactor.converters.tests.test_uniformMesh.TestGammaUniformMesh

test_applyStateToOriginal

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_locations

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTrackerNoModel

test_blockName

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTrackerNoModel

test_timestepFiltering

passed

armi.bookkeeping.tests.test_historyTracker.TestHistoryTrackerNoModel

test_timestepFilteringWithGap

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_checkForDuplicateObjectsOnArmiModel

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_displayMemoryUsage

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAllAxialMeshPoints

passed

armi.reactor.converters.tests.test_uniformMesh.TestGammaUniformMesh

test_convertNumberDensities

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_nonUniformAssems

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_fullBreakdown

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAllAxialMeshPoints_wSubmesh

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_getCurrentMemoryUsage

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_getReferrers

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_getTotalJobMemory

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_printCurrentMemoryState

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_printCurrentMemoryState_noSetting

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_printFullMemoryBreakdown

passed

armi.reactor.converters.tests.test_uniformMesh.TestParamConversion

test_setStateFromOverlaps

passed

armi.reactor.converters.tests.test_uniformMesh.TestUniformMeshNonUniformAssemFlags

test_reactorConversion

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAllAziMeshPoints

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_normalizeNames

passed

armi.bookkeeping.tests.test_memoryProfiler.TestMemoryProfiler

test_profileMemoryUsageAction

passed

armi.bookkeeping.tests.test_memoryProfiler.KlassCounterTests

test_countHandlesRecursion

passed

armi.bookkeeping.tests.test_memoryProfiler.KlassCounterTests

test_expandContainer

passed

armi.bookkeeping.tests.test_snapshot.TestSnapshotInterface

test_activeateDefaultSnapshots_17cycles5BurnSteps

passed

armi.bookkeeping.tests.test_snapshot.TestSnapshotInterface

test_activeateDefaultSnapshots_30cycles2BurnSteps

passed

armi.bookkeeping.tests.test_snapshot.TestSnapshotInterface

test_interactCoupled

passed

armi.bookkeeping.tests.test_snapshot.TestSnapshotInterface

test_interactEveryNode

passed

armi.bookkeeping.visualization.tests.test_vis.TestVtkMesh

test_testVtkMesh

passed

armi.bookkeeping.visualization.tests.test_vis.TestVisDump

test_cartesianMesh

passed

armi.bookkeeping.visualization.tests.test_vis.TestVisDump

test_dumpReactorVtk

passed

armi.bookkeeping.visualization.tests.test_vis.TestVisDump

test_dumpReactorXdmf

passed

armi.bookkeeping.visualization.tests.test_vis.TestVisDump

test_hexMesh

passed

armi.bookkeeping.visualization.tests.test_xdmf.TestXdmf

test_dedupTimes

passed

armi.cases.inputModifiers.tests.test_inputModifiers.TestsuiteBuilderIntegrations

test_bluePrintBlockModifier

passed

armi.cases.inputModifiers.tests.test_inputModifiers.TestsuiteBuilderIntegrations

test_settingsModifier

passed

armi.reactor.grids.tests.test_grids.TestSpatialLocator

test_add

passed

armi.reactor.grids.tests.test_grids.TestSpatialLocator

test_recursion

passed

armi.reactor.grids.tests.test_grids.TestSpatialLocator

test_recursionPin

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_basicPosition

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_getitem

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_isAxialOnly

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_label

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_lookupFactory

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_neighbors

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_quasiReduce

passed

armi.reactor.grids.tests.test_grids.TestGrid

test_ringPosFromIndicesIncorrect

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_adjustPitchCornersUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_adjustPitchFlatsUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_badIndices

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_buildLocations

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_cornersUpFlatsUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getAllIndices

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getCoordinatesCornersUp

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAllMeshPoints

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getCoordinatesFlatsUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getIndexBounds

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getLocalCoordinatesCornersUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getLocalCoordinatesFlatsUp

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getLocalCoordinatesHex

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_getSymmetricIdenticalsThird

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_inconsistentRotationGrids

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_indicesAndEdgeFromRingAndPos

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_isInFirstThird

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_is_pickleable

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_label

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_neighbors

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_overlapsWhichSymmetryLine

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_ringPosFromIndices

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_rotatedIndexGridAssignment

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_rotatedIndexRoughEqualPitch

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_rotatedIndices

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_thirdAndFullSymmetry

passed

armi.reactor.grids.tests.test_grids.TestHexGrid

test_triangleCoords

passed

armi.reactor.grids.tests.test_grids.TestBoundsDefinedGrid

test_base

passed

armi.reactor.grids.tests.test_grids.TestBoundsDefinedGrid

test_getIndexBounds

passed

armi.reactor.grids.tests.test_grids.TestBoundsDefinedGrid

test_positions

passed

armi.reactor.grids.tests.test_grids.TestBoundsDefinedGrid

test_positionsMixedDefinition

passed

armi.reactor.grids.tests.test_grids.TestThetaRZGrid

test_positions

passed

armi.reactor.grids.tests.test_grids.TestCartesianGrid

test_ringPosNoSplit

passed

armi.reactor.grids.tests.test_grids.TestCartesianGrid

test_ringPosSplit

passed

armi.reactor.grids.tests.test_grids.TestCartesianGrid

test_symmetry

passed

armi.reactor.grids.tests.test_grids.TestAxialGrid

test_getLocations

passed

armi.reactor.grids.tests.test_grids.TestAxialGrid

test_simpleBounds

passed

armi.reactor.tests.test_assemblies.MaterialInAssembly_TestCase

test_UThZrMaterial

passed

armi.reactor.tests.test_assemblies.MaterialInAssembly_TestCase

test_sortNoLocator

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_add

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_adjustResolution

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_append

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_pinCoordsAllBlocks

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_assem_block_types

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_assem_hex_type

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_averagePlenumTemperature

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_calcAvgParam

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_calcTotalParam

passed

armi.cases.inputModifiers.tests.test_inputModifiers.TestsuiteBuilderIntegrations

test_smearDensityFail

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_calculateZCoords

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_carestianCoordinates

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_countBlocksOfType

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_duplicate

passed

armi.cases.inputModifiers.tests.test_inputModifiers.TestSettingsModifiers

test_NeutronicConvergenceModifier

passed

armi.cases.inputModifiers.tests.test_inputModifiers.TestFullCoreModifier

test_fullCoreConversion

passed

armi.cases.inputModifiers.tests.test_pinTypeInputModifiers.TestBlueprintModifiers

test_AdjustSmearDensity

passed

armi.cases.inputModifiers.tests.test_pinTypeInputModifiers.TestBlueprintModifiers

test_CladThickenessByIDModifier

passed

armi.cases.inputModifiers.tests.test_pinTypeInputModifiers.TestBlueprintModifiers

test_CladThickenessByODModifier

passed

armi.cases.tests.test_cases.TestArmiCase

test_clone

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_extend

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getAge

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getArea

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getAxialMesh

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getBIndexFromZIndex

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getBlockData

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getBlocks

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getBlocksAndZ

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getBlocksBetweenElevations

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getDim

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getDominantMaterial

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getElevationBoundariesByBlockType

passed

armi.cases.tests.test_cases.TestArmiCase

test_endCoverage

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getElevationsMatchingParamValue

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getFirstBlock

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getFirstBlockByType

passed

armi.cases.tests.test_cases.TestArmiCase

test_endProfiling

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getFissileMass

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getHeight

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getLocation

passed

armi.cases.tests.test_cases.TestArmiCase

test_getCoverageRcFile

passed

armi.cases.tests.test_cases.TestArmiCase

test_independentVariables

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getMass

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getMaxParam

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getName

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getNum

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getParamValuesAtZ

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getReactiveHeight

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getTotalHeight

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_getVolume

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_hasContinuousCoolantChannel

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_hasFlags

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_isOnWhichSymmetryLine

passed

armi.reactor.tests.test_assemblies.Assembly_TestCase

test_iter

passed

armi.settings.tests.test_inspectors.TestInspector

test_createQueryRevertBadPathToDefault

passed

armi.settings.tests.test_inspectors.TestInspector

test_nonCorrectiveQuery

passed

armi.settings.tests.test_inspectors.TestInspector

test_overwriteSettingsCorrectiveQuery

passed

armi.settings.tests.test_inspectors.TestInspector

test_query

passed

armi.settings.tests.test_settings.TestSettings

test_metaData

passed

armi.settings.tests.test_settings.TestSettings

test_updateEnvironmentSettingsFrom

passed

armi.settings.tests.test_settings.TestAddingOptions

test_addingOptions

passed

armi.settings.tests.test_settings.TestSettings2

test_copySetting

passed

armi.settings.tests.test_settings.TestSettings2

test_copySettingNotDefault

passed

armi.settings.tests.test_settings.TestSettings2

test_csWorks

passed

armi.settings.tests.test_settings.TestSettings2

test_default

passed

armi.settings.tests.test_settings.TestSettings2

test_empty

passed

armi.settings.tests.test_settings.TestSettings2

test_getFailures

passed

armi.settings.tests.test_settings.TestSettings2

test_getSettingsSetByUser

passed

armi.settings.tests.test_settings.TestSettings2

test_listCoercion

passed

armi.settings.tests.test_settings.TestSettings2

test_listsMutable

passed

armi.settings.tests.test_settings.TestSettings2

test_modified

passed

armi.cases.tests.test_cases.TestArmiCase

test_run

passed

armi.settings.tests.test_settings.TestSettings2

test_pluginSettings

passed

armi.settings.tests.test_settings.TestSettings2

test_pluginValidatorsAreDiscovered

passed

armi.settings.tests.test_settings.TestSettings2

test_schemaChecksType

passed

armi.settings.tests.test_settings.TestSettings2

test_setModuleVerbosities

passed

armi.settings.tests.test_settings.TestSettings2

test_settingIsOkayToGrab

passed

armi.settings.tests.test_settings.TestSettings2

test_typeDetection

passed

armi.settings.tests.test_settings.TestSettingsUtils

test_prompt

passed

armi.settings.tests.test_settings.TestSettingsUtils

test_recursiveScan

passed

armi.settings.tests.test_settings.TestFlagListSetting

test_flagListSetting

passed

armi.settings.tests.test_settings.TestFlagListSetting

test_invalidFlagListTypeError

passed

armi.settings.tests.test_settings.TestSettingsValidationUtils

test_validateVersion

passed

armi.settings.tests.test_settingsIO.SettingsFailureTests

test_invalidFile

passed

armi.settings.tests.test_settingsIO.SettingsFailureTests

test_loadFromYamlFailsOnBadNames

passed

armi.settings.tests.test_settingsIO.SettingsFailureTests

test_settingsObjSetting

passed

armi.settings.tests.test_settingsIO.SettingsReaderTests

test_basicSettingsReader

passed

armi.settings.tests.test_settingsIO.SettingsReaderTests

test_readFromFile

passed

armi.settings.tests.test_settingsIO.SettingsRenameTests

test_collidingRenames

passed

armi.settings.tests.test_settingsIO.SettingsRenameTests

test_rename

passed

armi.settings.tests.test_settingsIO.SettingsWriterTests

test_errorSettingsWriter

passed

armi.settings.tests.test_settingsIO.SettingsWriterTests

test_writeFull

passed

armi.settings.tests.test_settingsIO.SettingsWriterTests

test_writeMedium

passed

armi.settings.tests.test_settingsIO.SettingsWriterTests

test_writeShort

passed

armi.settings.tests.test_settingsIO.SettingsWriterTests

test_writeYaml

passed

armi.settings.tests.test_settingsIO.SettingArgsTests

test_cannotLoadSettingsAfterParsingCommandLineSetting

passed

armi.settings.tests.test_settingsIO.SettingArgsTests

test_commandLineSetting

passed

armi.tests.test_apps.TestApps

test_disableFutureConfigures

passed

armi.tests.test_apps.TestApps

test_getParamRenames

passed

armi.tests.test_apps.TestApps

test_getParamRenamesInvalids

passed

armi.tests.test_apps.TestApps

test_getSettings

passed

armi.tests.test_apps.TestApps

test_isStableReleaseVersion

passed

armi.tests.test_apps.TestApps

test_registerPluginFlags

passed

armi.tests.test_apps.TestApps

test_splashText

passed

armi.tests.test_apps.TestApps

test_splashTextDifferentApp

passed

armi.tests.test_apps.TestApps

test_version

passed

armi.tests.test_apps.TestArmiHighLevel

test_getDefaultPluginManager

passed

armi.tests.test_apps.TestArmiHighLevel

test_main

passed

armi.tests.test_apps.TestArmiHighLevel

test_overConfigured

passed

armi.tests.test_armiTestHelper.TestArmiTestHelper

test_compareFilesFail

passed

armi.tests.test_armiTestHelper.TestArmiTestHelper

test_compareFilesSucceedFalseNegative

passed

armi.tests.test_armiTestHelper.TestArmiTestHelper

test_compareFilesSucess

passed

armi.tests.test_cartesian.CartesianReactorTests

test_custom

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAllRadMeshPoints

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_removeAssembliesInRing

passed

armi.cases.tests.test_cases.TestArmiCase

test_setUpTaskDependence

passed

armi.cases.tests.test_cases.TestArmiCase

test_startCoverage

passed

armi.cases.tests.test_cases.TestArmiCase

test_startProfiling

passed

armi.cases.tests.test_cases.TestArmiCase

test_summarizeDesign

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findAxialMeshIndexOf

passed

armi.tests.test_context.TestContextSerial

test_nonNoneData

passed

armi.tests.test_context.TestContextSerial

test_rank

passed

armi.tests.test_interfaces.TestCodeInterface

test_distributable

passed

armi.tests.test_interfaces.TestCodeInterface

test_duplicate

passed

armi.tests.test_interfaces.TestCodeInterface

test_enabled

passed

armi.tests.test_interfaces.TestCodeInterface

test_isRequestedDetailPoint

passed

armi.tests.test_interfaces.TestCodeInterface

test_nameContains

passed

armi.tests.test_interfaces.TestCodeInterface

test_preDistributeState

passed

armi.tests.test_interfaces.TestTightCoupler

test_couplerActive

passed

armi.tests.test_interfaces.TestTightCoupler

test_getListDimension

passed

armi.tests.test_interfaces.TestTightCoupler

test_isConverged

passed

armi.tests.test_interfaces.TestTightCoupler

test_isConvergedRuntimeError

passed

armi.tests.test_interfaces.TestTightCoupler

test_isConvergedValueError

passed

armi.tests.test_interfaces.TestTightCoupler

test_storePreviousIterationValue

passed

armi.tests.test_interfaces.TestTightCoupler

test_storePreviousIterationValueException

passed

armi.tests.test_lwrInputs.C5G7ReactorTests

test_loadC5G7

passed

armi.tests.test_mpiActions.MpiIterTests

test_diagnosePickleErrorTestReactor

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_removeAssembliesInRingByCount

passed

armi.tests.test_mpiActions.MpiIterTests

test_excessProcesses

passed

armi.tests.test_mpiActions.MpiIterTests

test_mpiIter

passed

armi.tests.test_mpiActions.MpiIterTests

test_parallel

passed

armi.tests.test_mpiActions.MpiIterTests

test_perfectBalancing

passed

armi.tests.test_mpiActions.MpiIterTests

test_runActionsDistributeStateAction

passed

armi.tests.test_mpiActions.MpiIterTests

test_runActionsDistributionAction

passed

armi.tests.test_mpiActions.MpiIterTests

test_serialGather

passed

armi.tests.test_mpiActions.MpiIterTests

test_typicalBalancing

passed

armi.tests.test_mpiActions.QueueActionsTests

test_disableForExclusiveTasks

passed

armi.tests.test_mpiActions.QueueActionsTests

test_makeQueue

passed

armi.tests.test_mpiFeatures.MpiOperatorTests

test_basicOperatorMPI

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:107: Parallel test only

armi.tests.test_mpiFeatures.MpiOperatorTests

test_finalizeInteract

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:148: Parallel test only

armi.tests.test_mpiFeatures.MpiOperatorTests

test_primaryCritical

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:137: Parallel test only

armi.tests.test_mpiFeatures.MpiOperatorTests

test_primaryException

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:120: Parallel test only

armi.tests.test_mpiFeatures.MpiDistributeStateTests

test_compileResults

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:290: Parallel test only

armi.tests.test_mpiFeatures.MpiDistributeStateTests

test_distributeInterfaces

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:252: Parallel test only

armi.tests.test_mpiFeatures.MpiDistributeStateTests

test_distributeReactor

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:239: Parallel test only

armi.tests.test_mpiFeatures.MpiDistributeStateTests

test_distributeSettings

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:215: Parallel test only

armi.tests.test_mpiFeatures.MpiDistributeStateTests

test_distributeState

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:264: Parallel test only

armi.tests.test_mpiFeatures.MpiPathToolsTests

test_cleanPathMpi

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:303: Parallel test only

armi.tests.test_mpiFeatures.TestContextMpi

test_nonNoneData

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:359: Parallel test only

armi.tests.test_mpiFeatures.TestContextMpi

test_rank

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiFeatures.py:355: Parallel test only

armi.tests.test_mpiParameters.SynchronizationTests

test_conflictsMaintainWithStateRetainer

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiParameters.py:107: Parallel test only

armi.tests.test_mpiParameters.SynchronizationTests

test_noConflicts

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiParameters.py:61: Parallel test only

armi.tests.test_mpiParameters.SynchronizationTests

test_withConflicts

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiParameters.py:83: Parallel test only

armi.tests.test_mpiParameters.SynchronizationTests

test_withConflictsButSameValue

skipped

Parallel test only /home/runner/work/armi/armi/armi/tests/test_mpiParameters.py:95: Parallel test only

armi.tests.test_notebooks.NotebookTests

test_runDataModel

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_findNeighbors

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_removeAssembliesInRingHex

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_removeAssembly

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_removeAssemblyNoSfp

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_genAssembliesAddedThisCycle

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_restoreReactor

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_genBlocksByLocName

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_checkInputs

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_clone

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_dependenciesWithObscurePaths

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_dependencyFromDBName

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_dependencyFromExplictRepeatShuffles

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_explicitDependency

passed

armi.cases.tests.test_cases.TestCaseSuiteDependencies

test_titleSetterGetter

passed

armi.cases.tests.test_cases.TestCaseSuiteComparison

test_compareNoDiffs

passed

armi.cases.tests.test_cases.TestExtraInputWriting

test_writeInput

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_geomType

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAllXsSuffixes

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInputsHelper

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_absPath

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_multipleFiles

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_nonFilePath

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_relPath

passed

armi.cases.tests.test_cases.TestCopyInterfaceInputs

test_copyInterfaceInputs_singleFile

passed

armi.reactor.tests.test_rz_reactors.TestRZTReactorModern

test_loadRZT_reactor

passed

armi.reactor.tests.test_zones.TestZone

test_addItem

passed

armi.reactor.tests.test_zones.TestZone

test_addItems

passed

armi.reactor.tests.test_zones.TestZone

test_addLoc

passed

armi.reactor.tests.test_zones.TestZone

test_addLocs

passed

armi.reactor.tests.test_zones.TestZone

test_blocks

passed

armi.reactor.tests.test_zones.TestZone

test_iteration

passed

armi.reactor.tests.test_zones.TestZone

test_removeItem

passed

armi.reactor.tests.test_zones.TestZone

test_removeItems

passed

armi.reactor.tests.test_zones.TestZone

test_removeLoc

passed

armi.reactor.tests.test_zones.TestZone

test_removeLocs

passed

armi.reactor.tests.test_zones.TestZone

test_repr

passed

armi.reactor.tests.test_zones.TestZones

test_dictionaryInterface

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_saveAllFlux

passed

armi.tests.test_notebooks.NotebookTests

test_runParamSweep

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssembliesInCircularRing

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_setB10VolOnCreation

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssembliesInHexRing

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_setPitchUniform

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssembliesOnSymmetryLine

passed

armi.reactor.tests.test_zones.TestZones

test_findZoneItIsIn

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_setPowerIfNecessary

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssemblyPitch

passed

armi.tests.test_plugins.TestPluginRegistration

test_axialExpansionHook

passed

armi.tests.test_plugins.TestPluginRegistration

test_beforeReactorConstructionHook

passed

armi.reactor.tests.test_zones.TestZones

test_getAllLocations

passed

armi.tests.test_plugins.TestPluginRegistration

test_defineFlags

passed

armi.tests.test_plugins.TestPluginBasics

test_defineParameters

passed

armi.tests.test_plugins.TestPluginBasics

test_exposeInterfaces

passed

armi.tests.test_plugins.TestPluginBasics

test_pluginsExposeInterfaces

passed

armi.tests.test_plugins.TestPlugin

test_defineBlueprintsSections

passed

armi.tests.test_plugins.TestPlugin

test_exposeInterfaces

passed

armi.tests.test_runLog.TestRunLog

test_callingStartLogMultipleTimes

passed

armi.tests.test_runLog.TestRunLog

test_closeLogging

passed

armi.tests.test_runLog.TestRunLog

test_concatenateLogs

passed

armi.tests.test_runLog.TestRunLog

test_createLogDir

passed

armi.tests.test_runLog.TestRunLog

test_getWhiteSpace

passed

armi.tests.test_runLog.TestRunLog

test_invalidSetVerbosityByString

passed

armi.tests.test_runLog.TestRunLog

test_parentRunLogging

passed

armi.tests.test_runLog.TestRunLog

test_setVerbosity

passed

armi.tests.test_runLog.TestRunLog

test_setVerbosityBeforeStartLog

passed

armi.tests.test_runLog.TestRunLog

test_setVerbosityFromInteger

passed

armi.tests.test_runLog.TestRunLog

test_setVerbosityFromString

passed

armi.tests.test_runLog.TestRunLog

test_verbosityOutOfRange

passed

armi.tests.test_runLog.TestRunLog

test_warningReport

passed

armi.tests.test_runLog.TestRunLog

test_warningReportInvalid

passed

armi.tests.test_runLog.TestRunLogger

test_allowStopDuplicates

passed

armi.tests.test_runLog.TestRunLogger

test_getDuplicatesFilter

passed

armi.tests.test_runLog.TestRunLogger

test_write

passed

armi.tests.test_tests.TestCompareFiles

test_compareFileLine

passed

armi.tests.test_user_plugins.TestUserPlugins

test_registerRepeatedUserPlugins

passed

armi.utils.tests.test_codeTiming.CodeTimingTest

test_method_definitions

passed

armi.utils.tests.test_codeTiming.CodeTimingTest

test_property_access

passed

armi.utils.tests.test_custom_exceptions.CustomExceptionTests

test_important_decorator

passed

armi.utils.tests.test_custom_exceptions.CustomExceptionTests

test_info_decorator

passed

armi.utils.tests.test_custom_exceptions.CustomExceptionTests

test_warn_decorator

passed

armi.utils.tests.test_custom_exceptions.CustomExceptionTests

test_warn_when_root_decorator

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_applyIsotopicsMix

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_calculateNumberDensity

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_expandElement

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_expandElementalMassFracsToNuclides

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_expandElementalZeroMassFrac

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_formatMaterialCard

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_getChemicals

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_getMassFractions

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_getMassInGrams

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_getNDensFromMasses

passed

armi.utils.tests.test_densityTools.TestDensityTools

test_normalizeNuclideList

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_change_to_nonexisting_fails

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_change_to_nonexisting_works_forced

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_exception

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_exception_disabled

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_file_retrieval

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_file_retrieval_missing_file

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_mpiAction

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_mpiActionFailsOnNonexistentPath

passed

armi.utils.tests.test_directoryChangers.TestDirectoryChangers

test_temporary_cleans

passed

armi.utils.tests.test_directoryChangersMpi.TestMPI

test_MpiDirectoryChanger

skipped

Parallel test only /home/runner/work/armi/armi/armi/utils/tests/test_directoryChangersMpi.py:62: Parallel test only

armi.utils.tests.test_flags.TestFlag

test_auto

passed

armi.utils.tests.test_flags.TestFlag

test_bitwise

passed

armi.utils.tests.test_flags.TestFlag

test_bool

passed

armi.utils.tests.test_flags.TestFlag

test_collision_creation

passed

armi.utils.tests.test_flags.TestFlag

test_collision_extension

passed

armi.utils.tests.test_flags.TestFlag

test_extend

passed

armi.utils.tests.test_flags.TestFlag

test_getitem

passed

armi.utils.tests.test_flags.TestFlag

test_hashable

passed

armi.utils.tests.test_flags.TestFlag

test_inclusion

passed

armi.utils.tests.test_flags.TestFlag

test_iteration

passed

armi.utils.tests.test_hexagon.TestHexagon

test_hexagon_area

passed

armi.utils.tests.test_hexagon.TestHexagon

test_indexWithNoRotation

passed

armi.utils.tests.test_hexagon.TestHexagon

test_numPositionsInRing

passed

armi.utils.tests.test_hexagon.TestHexagon

test_positionsUpToRing

passed

armi.utils.tests.test_hexagon.TestHexagon

test_rotateFuzzy

passed

armi.utils.tests.test_hexagon.TestHexagon

test_rotatedCellCenter

passed

armi.utils.tests.test_hexagon.TestHexagon

test_rotatedCellIndexErrors

passed

armi.utils.tests.test_hexagon.TestHexagon

test_rotatedCellOrientationErrors

passed

armi.utils.tests.test_hexagon.TestHexagon

test_rotatedFirstRing

passed

armi.utils.tests.test_iterables.TestIterables

test_addingSequences

passed

armi.utils.tests.test_iterables.TestIterables

test_appendSequence

passed

armi.utils.tests.test_iterables.TestIterables

test_arrayPivot

passed

armi.utils.tests.test_iterables.TestIterables

test_chunk

passed

armi.utils.tests.test_iterables.TestIterables

test_copySequence

passed

armi.utils.tests.test_iterables.TestIterables

test_extendSequence

passed

armi.utils.tests.test_iterables.TestIterables

test_flatten

passed

armi.utils.tests.test_iterables.TestIterables

test_listPivot

passed

armi.utils.tests.test_iterables.TestIterables

test_packingAndUnpackingBinaryStrings

passed

armi.utils.tests.test_iterables.TestIterables

test_packingAndUnpackingHexStrings

passed

armi.utils.tests.test_iterables.TestIterables

test_sequence

passed

armi.utils.tests.test_iterables.TestIterables

test_sequenceInit

passed

armi.utils.tests.test_iterables.TestIterables

test_split

passed

armi.utils.tests.test_mathematics.TestMath

test_average1DWithinTolerance

passed

armi.utils.tests.test_mathematics.TestMath

test_average1DWithinToleranceInvalid

passed

armi.utils.tests.test_mathematics.TestMath

test_convertToSlice

passed

armi.utils.tests.test_mathematics.TestMath

test_efmt

passed

armi.utils.tests.test_mathematics.TestMath

test_expandRepeatedFloats

passed

armi.utils.tests.test_mathematics.TestMath

test_findClosest

passed

armi.utils.tests.test_mathematics.TestMath

test_findNearestValue

passed

armi.utils.tests.test_mathematics.TestMath

test_fixThreeDigitExp

passed

armi.utils.tests.test_mathematics.TestMath

test_getFloat

passed

armi.utils.tests.test_mathematics.TestMath

test_getStepsFromValues

passed

armi.utils.tests.test_mathematics.TestMath

test_isMonotonic

passed

armi.utils.tests.test_mathematics.TestMath

test_linearInterpolation

passed

armi.utils.tests.test_mathematics.TestMath

test_minimizeScalarFunc

passed

armi.utils.tests.test_mathematics.TestMath

test_newtonsMethod

passed

armi.utils.tests.test_mathematics.TestMath

test_parabola

passed

armi.utils.tests.test_mathematics.TestMath

test_parabolicInterpolation

passed

armi.utils.tests.test_mathematics.TestMath

test_relErr

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg0

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg1

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg2

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg3

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg4

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg5

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg6

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvg7

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvgAllNones

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvgComplicatedNone

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvgNpArray

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvgNpArrayAverage

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseAvgOneNone

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum0

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum1

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum2

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum3

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum4

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum5

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum6

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSum7

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSumAllNones

passed

armi.utils.tests.test_mathematics.TestMath

test_resampleStepwiseSumOneNone

passed

armi.utils.tests.test_mathematics.TestMath

test_rotateXY

passed

armi.utils.tests.test_outputCache.TestOutputCache

test_deleteCache

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssemblyWithLoc

passed

armi.reactor.tests.test_zones.TestZones

test_getZoneLocations

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_sortAssemByRing

passed

armi.utils.tests.test_outputCache.TestOutputCache

test_getCachedFolder

passed

armi.utils.tests.test_outputCache.TestOutputCache

test_hashFiles

passed

armi.utils.tests.test_outputCache.TestOutputCache

test_makeOutputManifest

passed

armi.utils.tests.test_outputCache.TestOutputCache

test_retrieveOutput

passed

armi.utils.tests.test_parsing.LiteralEvalTest

test_parseValue

passed

armi.utils.tests.test_parsing.LiteralEvalTest

test_tryLiteralEval

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_cleanPathNoMpi

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_copyOrWarnDir

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_copyOrWarnFile

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_importCustomModule

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_isAccessible

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_isFilePathNewer

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAssemblyWithName

passed

armi.reactor.tests.test_zones.TestZones

test_sortZones

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_moduleAndAttributeExist

passed

armi.utils.tests.test_pathTools.PathToolsTests

test_separateModuleAndAttribute

passed

armi.utils.tests.test_plotting.TestPlotting

test_plotAssemblyTypes

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_sortChildren

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getAvgTemp

passed

armi.reactor.tests.test_zones.TestZones

test_summary

passed

armi.utils.tests.test_plotting.TestPlotting

test_plotBlockFlux

passed

armi.settings.fwSettings.tests.test_fwSettings.TestSchema

test_schema

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_updateBlockBOLHeights_DBLoad

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getBlocksByIndices

passed

armi.utils.tests.test_plotting.TestPlotting

test_plotCartesianBlock

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_extraAssignments

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_incompleteAssignment

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_invalidArgumentTypes

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_missingAssignments

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_serializeSettingsException

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_validAssignments

passed

armi.settings.fwSettings.tests.test_tightCouplingSettings.TestTightCouplingSettings

test_yamlIO

passed

armi.settings.tests.test_inspectors.TestInspector

test_assignCS

passed

armi.settings.tests.test_inspectors.TestInspector

test_callableCorrectionCheck

passed

armi.settings.tests.test_inspectors.TestInspector

test_changeOfCS

passed

armi.settings.tests.test_inspectors.TestInspector

test_checkForBothSimpleAndDetailedCyclesInputs

passed

armi.settings.tests.test_inspectors.TestInspector

test_correctCyclesToZeroBurnup

passed

armi.tests.test_user_plugins.TestUserPlugins

test_registerUserPlugins

passed

armi.tests.test_user_plugins.TestUserPlugins

test_registerUserPluginsAbsPath

passed

armi.tests.test_user_plugins.TestUserPlugins

test_registerUserPluginsFromSettings

passed

armi.tests.test_user_plugins.TestUserPlugins

test_userPluginOnProcessCoreLoading

passed

armi.tests.test_user_plugins.TestUserPlugins

test_userPluginWithInterfaces

passed

armi.tests.test_user_plugins.TestUserPlugins

test_userPluginsFlags

passed

armi.tests.test_user_plugins.TestUserPlugins

test_validateUserPluginLimitations

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_cartesian

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_flatHexBases

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexFullCornersUp

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexFullCornersUpSpotCheck

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexFullFlat

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexFullFlatsUp

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexSmallFlat

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexThird

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexWithEmptyRow

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_hexWithHoles

passed

armi.utils.tests.test_asciimaps.TestAsciiMaps

test_troublesomeHexThird

passed

armi.utils.tests.test_codeTiming.CodeTimingTest

test_alternate_usages

passed

armi.utils.tests.test_codeTiming.CodeTimingTest

test_master

passed

armi.utils.tests.test_codeTiming.CodeTimingTest

test_messy_starts_and_stops

passed

armi.utils.tests.test_plotting.TestPlotting

test_plotDepthMap

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_radar

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getDominantMaterial

passed

armi.utils.tests.test_plotting.TestPlotting

test_plotHexBlock

passed

armi.utils.tests.test_plotting.TestPatches

test_makeAssemPatches

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_whenNoAssemblies

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_valueVsTime

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_xsHistoryVsTime

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getFirstFuelBlockAxialNode

passed

armi.utils.tests.test_tabulate.TestTabulateAPI

test_tabulateFormats

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_dictLike

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_iterableOfEmpties

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_iterableOfIterables

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_iterableOfIterablesFirstrow

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_iterableOfIterablesHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listBytes

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDicts

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDictsFirstrow

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDictsKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDictsWithDictOfHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDictsWithListOfHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfDictsWithMissingKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfLists

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfListsFirstrow

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfListsKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfNamedtuples

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfNamedtuplesKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfOrdereddicts

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfUserdicts

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_listOfUserdictsKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpy2d

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpy2dFirstrow

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpy2dKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpyRecordArray

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpyRecordArrayHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_numpyRecordArrayKeys

passed

armi.utils.tests.test_tabulate.TestTabulateInputs

test_tightCouplingExample

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyBottomMultiTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyBottomSingleTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyCenterMultiTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyCenterSingleTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyOneLineOnly

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyTopMultiTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignCellVeriticallyTopSingleTextMultiplePad

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignColumnDecimal

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignColumnDecimalWithIncorrectThousandSeparators

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignColumnDecimalWithThousandSeparators

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignColumnMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_alignColumnNone

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_assortedRareEdgeCases

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_bool

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_buildLine

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_buildRow

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_format

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_isMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_multilineWidth

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_normalizeTabularData

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_type

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_visibleWidth

passed

armi.utils.tests.test_tabulate.TestTabulateInternal

test_wrapTextToColWidths

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_colAlignMulti

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_colAlignMultiWithSepLine

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_colAlignOrheadersAlignTooLong

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_columnAlignment

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_columnGlobalAndSpecificAlignment

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_dictLikeWithIndex

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_disableNumParseDefault

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_disableNumParseList

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_disableNumParseTrue

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_emptyData

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_emptyDataWithHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_emptyDataWithoutHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_floatConversions

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_floatFmt

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_floatFmtMulti

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_github

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_grid

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_gridHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_gridMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_gridMultilineHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_gridMultilineWithEmptyCells

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_gridMultilineWithEmptyCellsHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_headersGlobalAndSpecificAlignment

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_intFmt

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_listOfListsWithIndex

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_listOfListsWithIndexFirstrow

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_listOfListsWithIndexWithSepLine

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_listOfListsWithSuppliedIndex

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_maxColWidthsingleValue

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_maxcolwidthHonorDisableParsenum

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_maxcolwidthPadTailingWidths

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_missingVal

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_missingValMulti

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_noData

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_noDataWithoutHeaders

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plain

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMaxcolwidthAutowraps

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMaxcolwidthAutowrapsWithSep

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMultilineHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMultilineWithEmptyCells

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMultilineWithEmptyCellsHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainMultilineWithLinks

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_plainmaxHeaderColWidthsAutowraps

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_pretty

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyMultilineHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyMultilineWithEmptyCells

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyMultilineWithEmptyCellsHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_prettyMultilineWithLinks

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_readmeExampleWithSep

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rst

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstMultilineWithEmptyCells

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstMultilineWithEmptyCellsHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstMultilineWithLinks

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_rstWithEmptyValuesInFirstColumn

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simple

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleHeaderlessWithSepLine

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultiline

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultiline2

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultiline2WithSepLine

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultilineHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultilineWithEmptyCells

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultilineWithEmptyCellsHeaderless

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleMultilineWithLinks

passed

armi.utils.tests.test_tabulate.TestTabulateOutput

test_simpleWithSepLine

passed

armi.utils.tests.test_textProcessors.TestTextProcessor

test_fsearch

passed

armi.utils.tests.test_textProcessors.TestTextProcessor

test_fsearchText

passed

armi.utils.tests.test_textProcessors.YamlIncludeTest

test_findIncludes

passed

armi.utils.tests.test_textProcessors.YamlIncludeTest

test_resolveIncludes

passed

armi.utils.tests.test_textProcessors.YamlIncludeTest

test_resolveIncludes_StringIO

passed

armi.utils.tests.test_textProcessors.SequentialReaderTests

test_consumeLine

passed

armi.utils.tests.test_textProcessors.SequentialReaderTests

test_issueWarningOnFindingText

passed

armi.utils.tests.test_textProcessors.SequentialReaderTests

test_raiseErrorOnFindingText

passed

armi.utils.tests.test_textProcessors.SequentialReaderTests

test_readFile

passed

armi.utils.tests.test_textProcessors.SequentialReaderTests

test_readFileWithPattern

passed

armi.utils.tests.test_triangle.TestTriangle

test_checkIfPointIsInTriangle

passed

armi.utils.tests.test_triangle.TestTriangle

test_checkIfPointIsInTriangle2

passed

armi.utils.tests.test_triangle.TestTriangle

test_getTriangleArea

passed

armi.utils.tests.test_units.TestUnits

test_convertXtoPascal

passed

armi.utils.tests.test_units.TestUnits

test_getTc

passed

armi.utils.tests.test_units.TestUnits

test_getTemperature

passed

armi.utils.tests.test_units.TestUnits

test_getTf

passed

armi.utils.tests.test_units.TestUnits

test_getTk

passed

armi.utils.tests.test_units.TestUnits

test_getTmev

passed

armi.utils.tests.test_units.TestUnits

test_getXYLineParameters

passed

armi.utils.tests.test_units.TestUnits

test_pressure_converter

passed

armi.utils.tests.test_units.TestUnits

test_sanitizeAngle

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_capStrLen

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_classesInHierarchy

passed

armi.reactor.tests.test_reactors.CartesianReactorTests

test_add

passed

armi.reactor.tests.test_reactors.CartesianReactorTests

test_getAssembliesInSquareRing

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_codeTiming

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_createFormattedStrWithDelimiter

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_getFileSHA1Hash

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_getFileSHA1HashDir

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_list2str

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_mergeableDictionary

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_plotMatrix

passed

armi.reactor.tests.test_reactors.CartesianReactorTests

test_getAssemblyPitch

passed

armi.reactor.tests.test_reactors.CartesianReactorTests

test_getNuclideCategoriesLogging

passed

armi.reactor.tests.test_reactors.CartesianReactorNeighborTests

test_findNeighborsCartesian

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_prependToList

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_safeCopy

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_safeMove

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_safeMoveDir

passed

armi.utils.tests.test_utils.TestGeneralUtils

test_slantSplit

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getAvailabilityFactors

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getBurnSteps

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getCumulativeNodeNum

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getCycleLengths

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getCycleNames

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getCycleNodeFromCumulativeNode

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getCycleNodeFromCumulativeStep

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getMaxBurnSteps

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getNodesPerCycle

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getPowerFractions

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getPreviousTimeNode

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_getStepLengths

passed

armi.utils.tests.test_utils.CyclesSettingsTests

test_hasBurnup

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getFluxVector

passed

armi.reactor.tests.test_rz_reactors.TestRZTReactor

test_findAllMeshPoints

passed

armi.reactor.tests.test_rz_reactors.TestRZTReactor

test_loadRZT

passed

armi.utils.tests.test_properties.ImmutablePropertyTests

test_cannotAssignValueToImmutableProperty

passed

armi.utils.tests.test_properties.ImmutablePropertyTests

test_retreivingUnassignedValueRaisesError

passed

armi.utils.tests.test_properties.ImmutablePropertyTests

test_unlockDoesNotPermitsReassignmentOfAnImmutableProperty

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_createPlotMetaData

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_keffVsTime

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_movesVsCycle

passed

armi.utils.tests.test_reportPlotting.TestRadar

test_plotAxialProfile

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getFuelBottomHeight

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getGridBounds

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getMass

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getMaxAssembliesInHexRing

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getMaxNumPins

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getMinimumPercentFluxInFuel

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNozzleTypes

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNuclideCategories

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNumAssembliesWithAllRingsFilledOut

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNumAssembliesWithAllRingsFilledOutBipass

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNumEnergyGroups

passed

armi.reactor.tests.test_reactors.HexReactorTests

test_getNumRings

passed

3.5. Appendix A Pytest Verbose Output

Below is the verbose output of the pytest run for armi.

Initializing generic ARMI Framework application
============================= test session starts ==============================
platform linux -- Python 3.13.2, pytest-8.3.5, pluggy-1.5.0 -- /opt/hostedtoolcache/Python/3.13.2/x64/bin/python
cachedir: .pytest_cache
rootdir: /home/runner/work/armi/armi
configfile: pyproject.toml
plugins: xdist-3.6.1, cov-6.0.0
created: 4/4 workers
4 workers [2411 items]

scheduling tests via LoadScheduling

armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_wildcardFile 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_linearExpansion 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareAuxData 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_cache 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_cache 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_density 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_propertyValidTemperature 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_density 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_densityKgM3 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_duplicate 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_isPicklable 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_propertyValidTemperature 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_pseudoDensityKgM3 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_setDefaultMassFracs 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_pseudoDensityKgM3 
[gw0] [  0%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareAuxData 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareDatabaseDuplicate 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_wrappedDensity 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Lead_TestCase::test_TD 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_TD 
armi/materials/tests/test_materials.py::Lead_TestCase::test_cache 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_cache 
armi/materials/tests/test_materials.py::Lead_TestCase::test_density 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_density 
armi/materials/tests/test_materials.py::Lead_TestCase::test_densityKgM3 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Lead_TestCase::test_duplicate 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Lead_TestCase::test_heatCapacity 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::Lead_TestCase::test_isPicklable 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Lead_TestCase::test_linearExpansion 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Lead_TestCase::test_propertyValidTemperature 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Lead_TestCase::test_pseudoDensity 
[gw3] [  0%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_pseudoDensity 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_wrappedDensity 
[gw1] [  0%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_TD 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_TD 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_cache 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_cache 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_density 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_density 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_densityKgM3 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_duplicate 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_isPicklable 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Lead_TestCase::test_pseudoDensityKgM3 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Lead_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_propertyValidTemperature 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_pseudoDensity 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_pseudoDensityKgM3 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_wrappedDensity 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::NiobiumZirconium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_TD 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_cache 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_density 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_density 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_densityKgM3 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Lead_TestCase::test_volumetricExpansion 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_volumetricExpansion 
armi/materials/tests/test_materials.py::Lead_TestCase::test_wrappedDensity 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::Lead_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_TD 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_TD 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_cache 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_cache 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_density 
[gw3] [  1%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_density 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_densityKgM3 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_duplicate 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_isPicklable 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_propertyValidTemperature 
[gw1] [  1%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_pseudoDensity 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_pseudoDensityKgM3 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Potassium_TestCase::test_wrappedDensity 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::Potassium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_TD 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_cache 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_cache 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_density 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_density 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_duplicate 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_densityKgM3 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_duplicate 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_isPicklable 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_linearExpansionPercent 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_propertyValidTemperature 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_pseudoDensity 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_dynamicVisc 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_dynamicVisc 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_getTempChangeForDensityChange 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_getTempChangeForDensityChange 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_heatCapacity 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_isPicklable 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_propertyValidTemperature 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_pseudoDensity 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_pseudoDensityKgM3 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_setDefaultMassFracs 
[gw3] [  2%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_volumetricExpansion 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_wrappedDensity 
[gw1] [  2%] PASSED armi/materials/tests/test_materials.py::ScandiumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_TD 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_cache 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_density 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_density 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_densityKgM3 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_volumetricExpansion 
armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_wrappedDensity 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::LeadBismuth_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Copper_TestCase::test_TD 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_TD 
armi/materials/tests/test_materials.py::Copper_TestCase::test_cache 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_cache 
armi/materials/tests/test_materials.py::Copper_TestCase::test_density 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_duplicate 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_duplicate 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_density 
armi/materials/tests/test_materials.py::Copper_TestCase::test_densityKgM3 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Copper_TestCase::test_densityNeverChanges 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_densityNeverChanges 
armi/materials/tests/test_materials.py::Copper_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_enthalpy 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_enthalpy 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_isPicklable 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_isPicklable 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_propertyValidTemperature 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Copper_TestCase::test_getChildren 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_getChildren 
armi/materials/tests/test_materials.py::Copper_TestCase::test_getChildrenWithFlags 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_getChildrenWithFlags 
armi/materials/tests/test_materials.py::Copper_TestCase::test_isPicklable 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Copper_TestCase::test_linearExpansionPercent 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::Copper_TestCase::test_pseudoDensityKgM3 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Copper_TestCase::test_setDefaultMassFracs 
[gw3] [  3%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_setDefaultMassFracs 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_pseudoDensityKgM3 
[gw1] [  3%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_specificVolumeLiquid 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_specificVolumeLiquid 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_thermalConductivity 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::Sodium_TestCase::test_wrappedDensity 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Sodium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_TD 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_TD 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_cache 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_cache 
armi/materials/tests/test_materials.py::Copper_TestCase::test_wrappedDensity 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Copper_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_TD 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_TD 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_cache 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_cache 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_density 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_density 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_densityKgM3 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_density 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_density 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_densityKgM3 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_duplicate 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_isPicklable 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_propertyValidTemperature 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_isPicklable 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_propertyValidTemperature 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_propertyValidTemperature 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_pseudoDensity 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_pseudoDensityKgM3 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_pseudoDensity 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Tantalum_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_pseudoDensityKgM3 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_setDefaultMassFracs 
[gw3] [  4%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_volumetricExpansion 
[gw1] [  4%] PASSED armi/materials/tests/test_materials.py::Tantalum_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_TD 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_TD 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_cache 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_volumetricExpansion 
armi/materials/tests/test_materials.py::Sulfur_TestCase::test_wrappedDensity 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_cache 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_density 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_density 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_densityKgM3 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_densityKgM3 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Sulfur_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Zr_TestCase::test_TD 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_duplicate 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_isPicklable 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_TD 
armi/materials/tests/test_materials.py::Zr_TestCase::test_cache 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_cache 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Zr_TestCase::test_density 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_density 
armi/materials/tests/test_materials.py::Zr_TestCase::test_densityKgM3 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Zr_TestCase::test_duplicate 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_meltingPoint 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_meltingPoint 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Zr_TestCase::test_isPicklable 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Zr_TestCase::test_linearExpansion 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_propertyValidTemperature 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Zr_TestCase::test_linearExpansionPercent 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::Zr_TestCase::test_propertyValidTemperature 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Zr_TestCase::test_pseudoDensity 
[gw3] [  5%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Zr_TestCase::test_pseudoDensityKgM3 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_pseudoDensityKgM3 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_thermalConductivity 
[gw1] [  5%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_thermalConductivity 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Zr_TestCase::test_thermalConductivity 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::Zr_TestCase::test_wrappedDensity 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Zr_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_Iconel800_linearExpansion 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_Iconel800_linearExpansion 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_TD 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_TD 
armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_wrappedDensity 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::ThoriumUraniumMetal_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_TD 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_applyInputParams 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_applyInputParams 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_cache 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_density 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_density 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_cache 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_cache 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_density 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_density 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_densityKgM3 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_densityKgM3 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_duplicate 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_isPicklable 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_isPicklable 
[gw1] [  6%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_isPicklable 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_propertyValidTemperature 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_pseudoDensity 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_pseudoDensityKgM3 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_setDefaultMassFracs 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Inconel_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_propertyValidTemperature 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_00_setDefaultMassFracs 
[gw3] [  6%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_00_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_01_linearExpansionPercent 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_01_linearExpansionPercent 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_02_linearExpansion 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_02_linearExpansion 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_03_pseudoDensity 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_03_pseudoDensity 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_pseudoDensityKgM3 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_TD 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_TD 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_cache 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_cache 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_density 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_density 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_densityKgM3 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_duplicate 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_heatCapacity 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_isPicklable 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitHeatCapacity 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_thermalConductivity 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::Uranium_TestCase::test_wrappedDensity 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::Uranium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_TD 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_adjustMassEnrichment 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitHeatCapacity 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitLinearExpansionPercent 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitLinearExpansionPercent 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitThermalConductivity 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_polyfitThermalConductivity 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_propertyValidTemperature 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_pseudoDensityKgM3 
[gw3] [  7%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Inconel600_TestCase::test_wrappedDensity 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_adjustMassEnrichment 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_applyInputParams 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_applyInputParams 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_cache 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_cache 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_density 
[gw1] [  7%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_density 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_densityKgM3 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_densityKgM3 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel600_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_00_setDefaultMassFracs 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_00_setDefaultMassFracs 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_01_linearExpansionPercent 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_densityTimesHeatCapactiy 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_densityTimesHeatCapactiy 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_duplicate 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_01_linearExpansionPercent 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_02_linearExpansion 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_02_linearExpansion 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getDensityExpansion3D 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_03_pseudoDensity 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getDensityExpansion3D 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_03_pseudoDensity 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_TD 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getTempChangeForDensityChange 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getTempChangeForDensityChange 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getTemperatureAtDensity 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_getTemperatureAtDensity 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_heatCapacity 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_isPicklable 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_TD 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_cache 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_cache 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_density 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_density 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_densityKgM3 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_duplicate 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_linearExpansion 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_linearExpansionPercent 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_heatCapacity 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_heatCapacity 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_meltingPoint 
[gw1] [  8%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_meltingPoint 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_isPicklable 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitHeatCapacity 
[gw3] [  8%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitHeatCapacity 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitLinearExpansionPercent 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitLinearExpansionPercent 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_propertyValidTemperature 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_pseudoDensityKgM3 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_removeNucMassFrac 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitThermalConductivity 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_polyfitThermalConductivity 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_propertyValidTemperature 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_pseudoDensityKgM3 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_removeNucMassFrac 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_thermalConductivity 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_wrappedDensity 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::UraniumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_TD 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_TD 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Inconel625_TestCase::test_wrappedDensity 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::Inconel625_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_cache 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_00_setDefaultMassFracs 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_density 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_density 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_densityKgM3 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_densityKgM3 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_00_setDefaultMassFracs 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_01_linearExpansionPercent 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_01_linearExpansionPercent 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_02_linearExpansion 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_02_linearExpansion 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_duplicate 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_isPicklable 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_03_pseudoDensity 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_03_pseudoDensity 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_TD 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_TD 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_cache 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_cache 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_density 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_density 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_densityKgM3 
[gw3] [  9%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_linearExpansion 
[gw1] [  9%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_meltingPoint 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_meltingPoint 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_propertyValidTemperature 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_pseudoDensity 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_pseudoDensityKgM3 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_setDefaultMassFracs 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_setDefaultMassFracs 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_heatCapacity 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_isPicklable 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitHeatCapacity 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitHeatCapacity 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitLinearExpansionPercent 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitLinearExpansionPercent 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitThermalConductivity 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_thermalConductivity 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::Thorium_TestCase::test_wrappedDensity 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::Thorium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_TD 
[gw0] [ 10%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareDatabaseDuplicate 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareDatabaseSim 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_polyfitThermalConductivity 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_propertyValidTemperature 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_pseudoDensityKgM3 
[gw2] [ 10%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_wildcardFile 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_cache 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_cache 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_failOnDuplicateSetting 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_density 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_density 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_densityKgM3 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_duplicate 
[gw1] [ 10%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_duplicate 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::InconelX750_TestCase::test_wrappedDensity 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::InconelX750_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_TD 
[gw3] [ 10%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_TD 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_cache 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_isPicklable 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_linearExpansion 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_meltingPoint 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_meltingPoint 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_propertyValidTemperature 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_cache 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_density 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_density 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_densityKgM3 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_duplicate 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_pseudoDensityKgM3 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_pseudoDensityKgM3 
[gw2] [ 11%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_failOnDuplicateSetting 
armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_addDegreeOfFreedom 
[gw2] [ 11%] PASSED armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_addDegreeOfFreedom 
armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_buildSuite 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_isPicklable 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_thermalConductivity 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_wrappedDensity 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_linearExpansionHotter 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_linearExpansionHotter 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_nickleContent 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::ThoriumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Void_TestCase::test_TD 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_TD 
armi/materials/tests/test_materials.py::Void_TestCase::test_cache 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_cache 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_nickleContent 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_propertyValidTemperature 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_pseudoDensityKgM3 
[gw3] [ 11%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Alloy200_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Void_TestCase::test_density 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_density 
armi/materials/tests/test_materials.py::Void_TestCase::test_densityKgM3 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Void_TestCase::test_duplicate 
[gw1] [ 11%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Void_TestCase::test_isPicklable 
[gw3] [ 12%] PASSED armi/materials/tests/test_materials.py::Alloy200_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_TD 
[gw3] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_TD 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_cache 
[gw3] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_cache 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_density 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Void_TestCase::test_linearExpansion 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_linearExpansion 
armi/materials/tests/test_materials.py::Void_TestCase::test_propertyValidTemperature 
[gw3] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_density 
armi/migration/tests/test_migration_base.py::TestSettingsMigration::test_loadStreamFromPath 
[gw3] [ 12%] PASSED armi/migration/tests/test_migration_base.py::TestSettingsMigration::test_loadStreamFromPath 
armi/nucDirectory/tests/test_elements.py::TestElement::test_abundancesAddToOne 
[gw3] [ 12%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_abundancesAddToOne 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_addExistingElementFails 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Void_TestCase::test_pseudoDensity 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Void_TestCase::test_pseudoDensityKgM3 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Void_TestCase::test_wrappedDensity 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Void_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_TD 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_TD 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_cache 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_cache 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_density 
[gw3] [ 12%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_addExistingElementFails 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_addedElementAppearsInElementList 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_density 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_densityKgM3 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_duplicate 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Mixture_TestCase::test_isPicklable 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::Mixture_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_densityKgM3 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_duplicate 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_isPicklable 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_propertyValidTemperature 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_pseudoDensity 
[gw1] [ 12%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_pseudoDensityKgM3 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::CaH2_TestCase::test_wrappedDensity 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::CaH2_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_TD 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_cache 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_density 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_density 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_densityKgM3 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_duplicate 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_isPicklable 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_propertyValidTemperature 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_pseudoDensity 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_pseudoDensityKgM3 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Hafnium_TestCase::test_wrappedDensity 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::Hafnium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_TD 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_TD 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_cache 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_cache 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_density 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_density 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_densityKgM3 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_duplicate 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_heatCapacity 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_heatCapacity 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_isPicklable 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_linearExpansionPercent 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_meanCoefficientThermalExpansion 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_meanCoefficientThermalExpansion 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_propertyValidTemperature 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_pseudoDensityKgM3 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_thermalConductivity 
[gw1] [ 13%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_thermalConductivity 
armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_wrappedDensity 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::HastelloyN_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::TZM_TestCase::test_00_applyInputParams 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_00_applyInputParams 
armi/materials/tests/test_materials.py::TZM_TestCase::test_01_pseudoDensity 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_01_pseudoDensity 
armi/materials/tests/test_materials.py::TZM_TestCase::test_02_linearExpansionPercent 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_02_linearExpansionPercent 
armi/materials/tests/test_materials.py::TZM_TestCase::test_TD 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_TD 
armi/materials/tests/test_materials.py::TZM_TestCase::test_cache 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_cache 
armi/materials/tests/test_materials.py::TZM_TestCase::test_density 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_density 
armi/materials/tests/test_materials.py::TZM_TestCase::test_densityKgM3 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::TZM_TestCase::test_duplicate 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::TZM_TestCase::test_isPicklable 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::TZM_TestCase::test_propertyValidTemperature 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::TZM_TestCase::test_pseudoDensityKgM3 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::TZM_TestCase::test_wrappedDensity 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::TZM_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_TD 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_cache 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_cache 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_density 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_density 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_densityKgM3 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_duplicate 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_isPicklable 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_linearExpansionPercent 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_propertyValidTemperature 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_pseudoDensity 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_pseudoDensityKgM3 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_wrappedDensity 
[gw1] [ 14%] PASSED armi/materials/tests/test_materials.py::YttriumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_TD 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_cache 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_cache 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_density 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_density 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_densityKgM3 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_duplicate 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_isPicklable 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_linearExpansionPercent 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_propertyValidTemperature 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_pseudoDensityKgM3 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_wrappedDensity 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::ZincOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::FuelMaterial_TestCase::test_class1Class2_class1_wt_frac 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::FuelMaterial_TestCase::test_class1Class2_class1_wt_frac 
armi/materials/tests/test_materials.py::FuelMaterial_TestCase::test_class1Class2_classX_custom_isotopics 
[gw1] [ 15%] PASSED armi/materials/tests/test_materials.py::FuelMaterial_TestCase::test_class1Class2_classX_custom_isotopics 
armi/materials/tests/test_sic.py::Test_SiC::test_TD 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_TD 
armi/materials/tests/test_sic.py::Test_SiC::test_cache 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_cache 
armi/materials/tests/test_sic.py::Test_SiC::test_density 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_density 
armi/materials/tests/test_sic.py::Test_SiC::test_densityKgM3 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_densityKgM3 
armi/materials/tests/test_sic.py::Test_SiC::test_duplicate 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_duplicate 
armi/materials/tests/test_sic.py::Test_SiC::test_heatCapacity 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_heatCapacity 
armi/materials/tests/test_sic.py::Test_SiC::test_isPicklable 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_isPicklable 
armi/materials/tests/test_sic.py::Test_SiC::test_meltingPoint 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_meltingPoint 
armi/materials/tests/test_sic.py::Test_SiC::test_propertyValidTemperature 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_propertyValidTemperature 
armi/materials/tests/test_sic.py::Test_SiC::test_pseudoDensity 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_pseudoDensity 
armi/materials/tests/test_sic.py::Test_SiC::test_pseudoDensityKgM3 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_pseudoDensityKgM3 
armi/materials/tests/test_sic.py::Test_SiC::test_wrappedDensity 
[gw1] [ 15%] PASSED armi/materials/tests/test_sic.py::Test_SiC::test_wrappedDensity 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_TD 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_TD 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_cache 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_cache 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_density 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_density 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_densityKgM3 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_densityKgM3 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_duplicate 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_duplicate 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_isPicklable 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_isPicklable 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_propertyValidTemperature 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_pseudoDensityKgM3 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_sulfur_density_frac 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_sulfur_density_frac 
armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_wrappedDensity 
[gw1] [ 16%] PASSED armi/materials/tests/test_sulfur.py::Sulfur_TestCase::test_wrappedDensity 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_TD 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_TD 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_cache 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_cache 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_density 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_density 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_densityKgM3 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_duplicate 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_duplicate 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_isPicklable 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_linearExpansionPercent 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_propertyValidTemperature 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_pseudoDensityKgM3 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_theoretical_pseudoDensity 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_theoretical_pseudoDensity 
armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_wrappedDensity 
[gw1] [ 16%] PASSED armi/materials/tests/test_thoriumOxide.py::ThoriumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_TD 
[gw1] [ 16%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_TD 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_cache 
[gw1] [ 16%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_cache 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_density 
[gw1] [ 16%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_density 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_densityKgM3 
[gw1] [ 17%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_densityKgM3 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_duplicate 
[gw1] [ 17%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_duplicate 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_isPicklable 
[gw1] [ 17%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_isPicklable 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_propertyValidTemperature 
[gw1] [ 17%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_uZr.py::UZR_TestCase::test_pseudoDensityKgM3 
[gw1] [ 17%] PASSED armi/materials/tests/test_uZr.py::UZR_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_water.py::Test_Water::test_massFrac 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_massFrac 
armi/materials/tests/test_water.py::Test_Water::test_propertyValidTemperature 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_propertyValidTemperature 
armi/materials/tests/test_water.py::Test_Water::test_validateNames 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_validateNames 
armi/materials/tests/test_water.py::Test_Water::test_water_at_boiling 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_water_at_boiling 
armi/materials/tests/test_water.py::Test_Water::test_water_at_critcalPoint 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_water_at_critcalPoint 
armi/materials/tests/test_water.py::Test_Water::test_water_at_freezing 
[gw1] [ 17%] PASSED armi/materials/tests/test_water.py::Test_Water::test_water_at_freezing 
armi/migration/tests/test_m0_1_6.py::TestMigration::test_locationLabelMigration 
[gw1] [ 17%] PASSED armi/migration/tests/test_m0_1_6.py::TestMigration::test_locationLabelMigration 
armi/migration/tests/test_migration_base.py::TestMigrationBases::test_basic_validation 
[gw1] [ 17%] PASSED armi/migration/tests/test_migration_base.py::TestMigrationBases::test_basic_validation 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_writeBinary 
[gw1] [ 17%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_writeBinary 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::Isotxs_merge_Tests::test_mergeMccV2FilesRemovesTheFileWideChi 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareDatabaseSim 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareSets 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_compareSets 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffResultsBasic 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffResultsBasic 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffSimpleData 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffSimpleData 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffSpecialData 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_diffSpecialData 
armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_outputWriter 
[gw0] [ 17%] PASSED armi/bookkeeping/db/tests/test_comparedb3.py::TestCompareDB3::test_outputWriter 
armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_history 
[gw1] [ 17%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::Isotxs_merge_Tests::test_mergeMccV2FilesRemovesTheFileWideChi 
armi/nuclearDataIO/cccc/tests/test_labels.py::TestLabels::test_readLabelsBinary 
[gw1] [ 17%] PASSED armi/nuclearDataIO/cccc/tests/test_labels.py::TestLabels::test_readLabelsBinary 
armi/nuclearDataIO/cccc/tests/test_labels.py::TestLabels::test_writeLabelsAscii 
[gw1] [ 17%] PASSED armi/nuclearDataIO/cccc/tests/test_labels.py::TestLabels::test_writeLabelsAscii 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_fc 
[gw1] [ 17%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_fc 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_fluxMoments 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_fluxMoments 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_write 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_write 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_xyPartialCurrents 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_xyPartialCurrents 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_zPartialCurrents 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhflux::test_zPartialCurrents 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_fc 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_fc 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_fluxMoments 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_fluxMoments 
armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_write 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_nhflux.py::TestNhfluxVariant::test_write 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_getPMATRXFileName 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_getPMATRXFileName 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_nuclideDataIsDifferent 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_nuclideDataIsDifferent 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_pmatrxNuclideDataAA 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_pmatrxNuclideDataAA 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_pmatrxNuclideDataAB 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrxNuclides::test_pmatrxNuclideDataAB 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxDoesntHaveDoseConversionFactors 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxDoesntHaveDoseConversionFactors 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxGammaEnergies 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxGammaEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxNeutronEnergies 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxNeutronEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxNuclideNames 
[gw1] [ 18%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestPmatrx::test_pmatrxNuclideNames 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxDoesntHaveDoseConversionFactors 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_addedElementAppearsInElementList 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementByNameReturnsElement 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementByNameReturnsElement 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementBySymbolReturnsElement 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementBySymbolReturnsElement 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementByZReturnsElement 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_elementByZReturnsElement 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_getNatrualIsotpicsOnlyRetrievesAbundaceGt0 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_getNatrualIsotpicsOnlyRetrievesAbundaceGt0 
armi/nucDirectory/tests/test_elements.py::TestElement::test_element_isNaturallyOccurring 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_element_isNaturallyOccurring 
armi/nucDirectory/tests/test_elements.py::TestElement::test_elements_elementBulkProperties 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_elements_elementBulkProperties 
armi/nucDirectory/tests/test_elements.py::TestElement::test_isHeavyMetal 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_elements.py::TestElement::test_isHeavyMetal 
armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_getDisplacementEnergy 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_getDisplacementEnergy 
armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNameForOldDashedNames 
[gw3] [ 18%] PASSED armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNameForOldDashedNames 
armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNuclideFromNuclidesNameReturnsNuclide 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxDoesntHaveDoseConversionFactors 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxGammaEnergies 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxGammaEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxNeutronEnergies 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxNeutronEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxNuclideNames 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_pmatrxNuclideNames 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_writtenIsIdenticalToOriginal 
[gw3] [ 19%] PASSED armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNuclideFromNuclidesNameReturnsNuclide 
armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNuclidesFromForBadName 
[gw3] [ 19%] PASSED armi/nucDirectory/tests/test_nucDirectory.py::TestNucDirectory::test_nucDir_getNuclidesFromForBadName 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_LumpNuclideBase_getNatrualIsotopicsDoesNotFail 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWritten::test_writtenIsIdenticalToOriginal 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxDoesntHaveDoseConversionFactors 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxDoesntHaveDoseConversionFactors 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxGammaEnergies 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxGammaEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxNeutronEnergies 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxNeutronEnergies 
armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxNuclideNames 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pmatrx.py::TestProductionMatrix_FromWrittenAscii::test_pmatrxNuclideNames 
armi/nuclearDataIO/cccc/tests/test_pwdint.py::TestGeodst::test_readGeodst 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pwdint.py::TestGeodst::test_readGeodst 
armi/nuclearDataIO/cccc/tests/test_pwdint.py::TestGeodst::test_writeGeodst 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_pwdint.py::TestGeodst::test_writeGeodst 
armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_adjoint 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_adjoint 
armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_readrtflux 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_readrtflux 
armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_rwAscii 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_rwAscii 
armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_writertflux 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rtflux.py::Testrtflux::test_writertflux 
armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_readRzflux 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_readRzflux 
armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_rwAscii 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_rwAscii 
armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_writeRzflux 
[gw1] [ 19%] PASSED armi/nuclearDataIO/cccc/tests/test_rzflux.py::TestRzflux::test_writeRzflux 
armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_collapseCrossSection 
[gw1] [ 19%] PASSED armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_collapseCrossSection 
armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_createMacrosFromMicros 
[gw3] [ 19%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_LumpNuclideBase_getNatrualIsotopicsDoesNotFail 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NaturalNuclideBase_getNatrualIsotpics 
[gw3] [ 19%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NaturalNuclideBase_getNatrualIsotpics 
[gw1] [ 19%] PASSED armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_createMacrosFromMicros 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NaturalNuclide_atomicWeightIsAverageOfNaturallyOccuringIsotopes 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NaturalNuclide_atomicWeightIsAverageOfNaturallyOccuringIsotopes 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NonMc2Nuclide 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_NonMc2Nuclide 
armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_generateTotalScatteringMatrix 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_curieDefinitionWithRa226 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_curieDefinitionWithRa226 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_getDecay 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_getDecay 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_generateTotalScatteringMatrix 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_getEndfMatNum 
armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_generateTotalScatteringMatrixWithMissingData 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_getEndfMatNum 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_kryptonDecayConstants 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_kryptonDecayConstants 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc2Data 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_generateTotalScatteringMatrixWithMissingData 
armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_plotNucXs 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc2Data 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc3EndfVII0Data 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc3EndfVII0Data 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc3EndfVII1Data 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsCollections.py::TestXsCollections::test_plotNucXs 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpickleGAMISO 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_loadMcc3EndfVII1Data 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBase_AllAbundancesAddToOne 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBase_AllAbundancesAddToOne 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_AllDatabaseNamesAreUnique 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_AllDatabaseNamesAreUnique 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_AllLabelsAreUnique 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpickleGAMISO 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpickleISOTXS 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpickleISOTXS 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpicklePMATRX 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canPickleAndUnpicklePMATRX 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWriteGamisoFromCombinedXSLibrary 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWriteGamisoFromCombinedXSLibrary 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWriteIsotxsFromCombinedXSLibrary 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWriteIsotxsFromCombinedXSLibrary 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWritePmatrxFromCombinedXSLibrary 
[gw1] [ 20%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_canWritePmatrxFromCombinedXSLibrary 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_compareDifferentComponentsOfAnXSLibrary 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_AllLabelsAreUnique 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Am242m 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Am242m 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Mc2Elementals 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Mc2Elementals 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_NegativeZRaisesException 
[gw3] [ 20%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_NegativeZRaisesException 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Z295RaisesException 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_Z295RaisesException 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_databaseNamesStartWith_n 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_databaseNamesStartWith_n 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_fromNameBadNameRaisesException 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_fromNameBadNameRaisesException 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurnChainDecayBulkStatistics 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurnChainDecayBulkStatistics 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurnChainTransmutationBulkStatistics 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurnChainTransmutationBulkStatistics 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurn_nuSF 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_imposeBurn_nuSF 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_isHeavyMetal 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_isHeavyMetal 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_labelAndNameCollsionsAreForSameNuclide 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_labelAndNameCollsionsAreForSameNuclide 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleFailsWithMultipleMatches 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleFailsWithMultipleMatches 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleFailsWithNoMatches 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleFailsWithNoMatches 
armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleIsPrettySpecific 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestNuclide::test_nucBases_singleIsPrettySpecific 
armi/nucDirectory/tests/test_nuclideBases.py::TestAAAZZZSId::test_AAAZZZSNameGenerator 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_nuclideBases.py::TestAAAZZZSId::test_AAAZZZSNameGenerator 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACECompound 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACECompound 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACEElementInCompound 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACEElementInCompound 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACEIsotope 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_ACEIsotope 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8Compound 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8Compound 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8ElementInCompound 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8ElementInCompound 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8Isotope 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_endf8Isotope 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_failOnMultiple 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_failOnMultiple 
armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_graphiteOnReactor 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_thermalScattering.py::TestThermalScattering::test_graphiteOnReactor 
armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_invalidReactionTypes 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_invalidReactionTypes 
armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_productParticle 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_productParticle 
armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_validReactionTypes 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_transmutations.py::TransmutationTests::test_Transmutation_validReactionTypes 
armi/nucDirectory/tests/test_transmutations.py::DecayModeTests::test_DecayMode_invalidReactionTypes 
[gw3] [ 21%] PASSED armi/nucDirectory/tests/test_transmutations.py::DecayModeTests::test_DecayMode_invalidReactionTypes 
armi/nucDirectory/tests/test_transmutations.py::DecayModeTests::test_DecayMode_validReactionTypes 
[gw3] [ 22%] PASSED armi/nucDirectory/tests/test_transmutations.py::DecayModeTests::test_DecayMode_validReactionTypes 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccIOStreamTests::test_initWithFileMode 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccIOStreamTests::test_initWithFileMode 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_notReadingAnEntireRecordRaisesException 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_notReadingAnEntireRecordRaisesException 
[gw1] [ 22%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_compareDifferentComponentsOfAnXSLibrary 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_readingBeyondRecordRaisesException 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_compareWorks 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_readingBeyondRecordRaisesException 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleFloatRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleFloatRecord 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleIntegerRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleIntegerRecord 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleStringRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccBinaryRecordTests::test_writeAndReadSimpleStringRecord 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_notReadingAnEntireRecordRaisesException 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_notReadingAnEntireRecordRaisesException 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_readingBeyondRecordRaisesException 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_readingBeyondRecordRaisesException 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleFloatRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleFloatRecord 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleIntegerRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleIntegerRecord 
armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleStringRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_cccc.py::CcccAsciiRecordTests::test_writeAndReadSimpleStringRecord 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_asciiRW 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_asciiRW 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_binaryRW 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_binaryRW 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_getCOMPXSFileName 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_getCOMPXSFileName 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_libraryData 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_libraryData 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_mergeCompxsLibraries 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_mergeCompxsLibraries 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_regionPrimaryXS 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_regionPrimaryXS 
armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_totalScatterMatrix 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_compxs.py::TestCompxs::test_totalScatterMatrix 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw2DRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw2DRecord 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw3DRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw3DRecord 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw4DRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw4DRecord 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw5DRecord 
[gw3] [ 22%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rw5DRecord 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rwFile1DRecord 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rwFile1DRecord 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rwFileID 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test__rwFileID 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test_writeBinary 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dSimpleHexz::test_writeBinary 
armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dEmptyRecords::test_empty4and5Records 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dif3d.py::TestDif3dEmptyRecords::test_empty4and5Records 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_ENDFVII1DecayConstants 
[gw1] [ 23%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_compareWorks 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_gamisoLibraryAttributes 
[gw1] [ 23%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_gamisoLibraryAttributes 
[gw3] [ 23%] SKIPPED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_ENDFVII1DecayConstants 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_ENDFVII1NeutronsPerFission 
[gw3] [ 23%] SKIPPED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_ENDFVII1NeutronsPerFission 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_NuDelay 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_isotxsLibraryAttributes 
[gw1] [ 23%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_isotxsLibraryAttributes 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_mergeFailsWithNonIsotxsFiles 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_NuDelay 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_avg 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_avg 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_chi_delay 
[gw1] [ 23%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_mergeFailsWithNonIsotxsFiles 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_mergeXSLibrariesWithDifferentDataWorks 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_chi_delay 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_chi_delaySumsTo1 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_chi_delaySumsTo1 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_compare 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_compare 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_decayConstants 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_decayConstants 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_nuclides 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_nuclides 
armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_writeBinary_mcc3 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_dlayxs.py::DlayxsTests::test_writeBinary_mcc3 
armi/nuclearDataIO/cccc/tests/test_fixsrc.py::TestFixsrc::test_writeReadBinaryLoop 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_fixsrc.py::TestFixsrc::test_writeReadBinaryLoop 
armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_addDummyNuclidesToLibrary 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_addDummyNuclidesToLibrary 
armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_compare 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_compare 
armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_writeBinary 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_gamiso.py::TestGamiso::test_writeBinary 
armi/nuclearDataIO/cccc/tests/test_geodst.py::TestGeodst::test_readGeodst 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_geodst.py::TestGeodst::test_readGeodst 
armi/nuclearDataIO/cccc/tests/test_geodst.py::TestGeodst::test_writeGeodst 
[gw3] [ 23%] PASSED armi/nuclearDataIO/cccc/tests/test_geodst.py::TestGeodst::test_writeGeodst 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getGAMISOFileName 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getGAMISOFileName 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getISOTXSFileName 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getISOTXSFileName 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getNuclide 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getNuclide 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getScatterWeights 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getScatterWeights 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getScatteringWeights 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_getScatteringWeights 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_isotxsDetailedData 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_isotxsDetailedData 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_isotxsGeneralData 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_isotxsGeneralData 
armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_n2nIsReactionBased 
[gw3] [ 24%] PASSED armi/nuclearDataIO/cccc/tests/test_isotxs.py::TestIsotxs::test_n2nIsReactionBased 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductsExplicit::test_explicitFissionProducts 
[gw3] [ 24%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductsExplicit::test_explicitFissionProducts 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestMo99LFP::test_getAllFissionProductNames 
[gw3] [ 24%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestMo99LFP::test_getAllFissionProductNames 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_readFromReactors 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_readFromReactors 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_readFromSettings 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_readFromSettings 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_savePhysicsFiles 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxOptions::test_savePhysicsFiles 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_checkEnergyBalance 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_checkEnergyBalance 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_computeDpaRate 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_computeDpaRate 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_getHistoryParams 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_getHistoryParams 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_getIOFileNames 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_getIOFileNames 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_interaction 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterface::test_interaction 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_calculateKeff 
[gw1] [ 24%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_mergeXSLibrariesWithDifferentDataWorks 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_pmatrxLibraryAttributes 
[gw1] [ 24%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestXSLibrary::test_pmatrxLibraryAttributes 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestGetISOTXSFilesInWorkingDirectory::test_getISOTXSFilesWithLibrarySuffix 
[gw1] [ 24%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestGetISOTXSFilesInWorkingDirectory::test_getISOTXSFilesWithLibrarySuffix 
armi/nuclearDataIO/tests/test_xsLibraries.py::TestGetISOTXSFilesInWorkingDirectory::test_getISOTXSFilesWithoutLibrarySuffix 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_calculateKeff 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_executerInteraction 
[gw3] [ 24%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_executerInteraction 
[gw1] [ 24%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::TestGetISOTXSFilesInWorkingDirectory::test_getISOTXSFilesWithoutLibrarySuffix 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_canRemoveIsotopes 
[gw1] [ 25%] SKIPPED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_canRemoveIsotopes 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_getExecuterCls 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_getExecuterCls 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_getTightCouplingValue 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_getTightCouplingValue 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_setTightCouplingDefaults 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecuters::test_setTightCouplingDefaults 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_calculateKeff 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_calculateKeff 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_executerInteractionNonUniformAssems 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_executerInteractionNonUniformAssems 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_getExecuterCls 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxInterfaceWithExecutersNonUniform::test_getExecuterCls 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getBurnupPeakingFactor 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getBurnupPeakingFactor 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getBurnupPeakingFactorZero 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getBurnupPeakingFactorZero 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getDpaXs 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_getDpaXs 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_mapper 
[gw2] [ 25%] PASSED armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_buildSuite 
armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_initialize 
[gw2] [ 25%] PASSED armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_initialize 
armi/cases/tests/test_suiteBuilder.py::TestFullFactorialSuiteBuilder::test_buildSuite 
[gw2] [ 25%] PASSED armi/cases/tests/test_suiteBuilder.py::TestFullFactorialSuiteBuilder::test_buildSuite 
armi/cases/tests/test_suiteBuilder.py::TestSeparateEffectsBuilder::test_buildSuite 
[gw2] [ 25%] PASSED armi/cases/tests/test_suiteBuilder.py::TestSeparateEffectsBuilder::test_buildSuite 
armi/cli/tests/test_runEntryPoint.py::TestInitializationEntryPoints::test_entryPointInitialization 
[gw1] [ 25%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibsWithDifferentGammaGroupStructures 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestInitializationEntryPoints::test_entryPointInitialization 
armi/cli/tests/test_runEntryPoint.py::TestCheckInputEntryPoint::test_checkInputEntryPointBasics 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCheckInputEntryPoint::test_checkInputEntryPointBasics 
armi/cli/tests/test_runEntryPoint.py::TestCheckInputEntryPoint::test_checkInputEntryPointInvoke 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCheckInputEntryPoint::test_checkInputEntryPointInvoke 
armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchBasics 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchBasics 
armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchInvokeMedium 
[gw0] [ 25%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_history 
armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_load 
[gw3] [ 25%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxResultMapper::test_mapper 
armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxUtils::test_calcReactionRates 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchInvokeMedium 
armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchInvokeShort 
[gw1] [ 25%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibsWithDifferentGammaGroupStructures 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
[gw2] [ 25%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCloneArmiRunCommandBatch::test_cloneArmiRunCommandBatchInvokeShort 
armi/cli/tests/test_runEntryPoint.py::TestCloneSuiteCommand::test_cloneSuiteCommandBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCloneSuiteCommand::test_cloneSuiteCommandBasics 
armi/cli/tests/test_runEntryPoint.py::TestCompareCases::test_compareCasesBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCompareCases::test_compareCasesBasics 
armi/cli/tests/test_runEntryPoint.py::TestCompareSuites::test_compareSuitesBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCompareSuites::test_compareSuitesBasics 
armi/cli/tests/test_runEntryPoint.py::TestExpandBlueprints::test_expandBlueprintsBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestExpandBlueprints::test_expandBlueprintsBasics 
armi/cli/tests/test_runEntryPoint.py::TestExtractInputs::test_extractInputsBasics 
[gw3] [ 26%] PASSED armi/physics/neutronics/globalFlux/tests/test_globalFluxInterface.py::TestGlobalFluxUtils::test_calcReactionRates 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_getSuffix 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_getSuffix 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_includeGammaXS 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_includeGammaXS 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactAll 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactAll 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactBOC 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactBOC 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactBOL 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactBOL 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNode 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNode 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeAll 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeAll 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeFirstCoupled 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeFirstCoupled 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeWhenCoupled 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeWhenCoupled 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeWhenCoupledButNot 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactEveryNodeWhenCoupledButNot 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactFirstCoupledIteration 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_interactFirstCoupledIteration 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_latticePhysicsInterface 
[gw3] [ 26%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsInterface::test_latticePhysicsInterface 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestExtractInputs::test_extractInputsBasics 
armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsBasics 
armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsInvokeIgnore 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsInvokeIgnore 
armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsInvokeNoData 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestInjectInputs::test_injectInputsInvokeNoData 
armi/cli/tests/test_runEntryPoint.py::TestMigrateInputs::test_migrateInputsBasics 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestMigrateInputs::test_migrateInputsBasics 
armi/cli/tests/test_runEntryPoint.py::TestModifyCaseSettingsCommand::test_modifyCaseSettingsCommandBasics 
[gw1] [ 26%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
[gw2] [ 26%] PASSED armi/cli/tests/test_runEntryPoint.py::TestModifyCaseSettingsCommand::test_modifyCaseSettingsCommandBasics 
armi/cli/tests/test_runEntryPoint.py::TestModifyCaseSettingsCommand::test_modifyCaseSettingsCommandInvoke 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestModifyCaseSettingsCommand::test_modifyCaseSettingsCommandInvoke 
armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_cleanArgs 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_cleanArgs 
armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_reportsEntryPointBasics 
[gw3] [ 27%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS_2 
[gw1] [ 27%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_mergeTwoXSLibFiles 
[gw3] [ 27%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS_2 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS_3 
[gw3] [ 27%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_GenXS_3 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_NoGenXS 
[gw1] [ 27%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Pmatrx_Merge_Tests::test_mergeTwoXSLibFiles 
armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_canRemoveIsotopes 
[gw3] [ 27%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_NoGenXS 
armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_NoGenXS_2 
[gw3] [ 27%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeInterface.py::TestLatticePhysicsLibraryCreation::test_libCreation_NoGenXS_2 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInC 
[gw1] [ 27%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_canRemoveIsotopes 
armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
[gw1] [ 27%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_reportsEntryPointBasics 
armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_toTwoTuple 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestReportsEntryPoint::test_toTwoTuple 
armi/cli/tests/test_runEntryPoint.py::TestCompareIsotxsLibsEntryPoint::test_compareIsotxsLibsBasics 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestCompareIsotxsLibsEntryPoint::test_compareIsotxsLibsBasics 
armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_executeCommand 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_executeCommand 
armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_runCommandHelp 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_runCommandHelp 
armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_runEntryPointBasics 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestRunEntryPoint::test_runEntryPointBasics 
armi/cli/tests/test_runEntryPoint.py::TestRunSuiteCommand::test_runSuiteCommandBasics 
[gw1] [ 27%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestRunSuiteCommand::test_runSuiteCommandBasics 
armi/cli/tests/test_runEntryPoint.py::TestVisFileEntryPointCommand::test_visFileEntryPointBasics 
[gw2] [ 27%] PASSED armi/cli/tests/test_runEntryPoint.py::TestVisFileEntryPointCommand::test_visFileEntryPointBasics 
armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_listCommand 
[gw2] [ 27%] PASSED armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_listCommand 
armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_run 
[gw2] [ 27%] PASSED armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_run 
armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_showVersion 
[gw2] [ 27%] PASSED armi/cli/tests/test_runSuite.py::TestRunSuiteSuite::test_showVersion 
armi/materials/tests/test__init__.py::Materials__init__Tests::test_canAccessClassesFromPackage 
[gw2] [ 27%] PASSED armi/materials/tests/test__init__.py::Materials__init__Tests::test_canAccessClassesFromPackage 
armi/materials/tests/test__init__.py::Materials__init__Tests::test_packageClassesEqualModuleClasses 
[gw2] [ 27%] PASSED armi/materials/tests/test__init__.py::Materials__init__Tests::test_packageClassesEqualModuleClasses 
armi/materials/tests/test_air.py::Test_Air::test_heatCapacity 
[gw2] [ 28%] PASSED armi/materials/tests/test_air.py::Test_Air::test_heatCapacity 
armi/materials/tests/test_air.py::Test_Air::test_massFrac 
[gw2] [ 28%] PASSED armi/materials/tests/test_air.py::Test_Air::test_massFrac 
armi/materials/tests/test_air.py::Test_Air::test_pseudoDensity 
[gw2] [ 28%] PASSED armi/materials/tests/test_air.py::Test_Air::test_pseudoDensity 
armi/materials/tests/test_air.py::Test_Air::test_thermalConductivity 
[gw2] [ 28%] PASSED armi/materials/tests/test_air.py::Test_Air::test_thermalConductivity 
armi/materials/tests/test_air.py::Test_Air::test_validRanges 
[gw2] [ 28%] PASSED armi/materials/tests/test_air.py::Test_Air::test_validRanges 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_TD 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_TD 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_cache 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_cache 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_density 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_density 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_densityKgM3 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_densityKgM3 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_duplicate 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_duplicate 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_isPicklable 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_isPicklable 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_propertyValidTemperature 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_pseudoDensityKgM3 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_theoretical_pseudoDensity 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_theoretical_pseudoDensity 
armi/materials/tests/test_b4c.py::B4C_TestCase::test_wrappedDensity 
[gw2] [ 28%] PASSED armi/materials/tests/test_b4c.py::B4C_TestCase::test_wrappedDensity 
armi/materials/tests/test_be9.py::Test_Be9::test_TD 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_TD 
armi/materials/tests/test_be9.py::Test_Be9::test_cache 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_cache 
armi/materials/tests/test_be9.py::Test_Be9::test_density 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_density 
armi/materials/tests/test_be9.py::Test_Be9::test_densityKgM3 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_densityKgM3 
armi/materials/tests/test_be9.py::Test_Be9::test_duplicate 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_duplicate 
armi/materials/tests/test_be9.py::Test_Be9::test_isPicklable 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_isPicklable 
armi/materials/tests/test_be9.py::Test_Be9::test_propertyValidTemperature 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_propertyValidTemperature 
armi/materials/tests/test_be9.py::Test_Be9::test_pseudoDensity 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_pseudoDensity 
armi/materials/tests/test_be9.py::Test_Be9::test_pseudoDensityKgM3 
[gw2] [ 28%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_pseudoDensityKgM3 
armi/materials/tests/test_be9.py::Test_Be9::test_wrappedDensity 
[gw2] [ 29%] PASSED armi/materials/tests/test_be9.py::Test_Be9::test_wrappedDensity 
armi/materials/tests/test_fluids.py::TestFluids::test_fluidDensityWrapperNoWarning 
[gw2] [ 29%] PASSED armi/materials/tests/test_fluids.py::TestFluids::test_fluidDensityWrapperNoWarning 
armi/materials/tests/test_graphite.py::Graphite_TestCase::test_density 
[gw2] [ 29%] PASSED armi/materials/tests/test_graphite.py::Graphite_TestCase::test_density 
armi/materials/tests/test_graphite.py::Graphite_TestCase::test_linearExpansionPercent 
[gw2] [ 29%] PASSED armi/materials/tests/test_graphite.py::Graphite_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_graphite.py::Graphite_TestCase::test_propertyValidTemperature 
[gw2] [ 29%] PASSED armi/materials/tests/test_graphite.py::Graphite_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_Lithium_material_modifications 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_Lithium_material_modifications 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_TD 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_TD 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_boilingPoint 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_boilingPoint 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_cache 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_cache 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_density 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_density 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_densityKgM3 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_densityKgM3 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_duplicate 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_duplicate 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_heatCapacity 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_heatCapacity 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_isPicklable 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_isPicklable 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_meltingPoint 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_meltingPoint 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_propertyValidTemperature 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_pseudoDensity 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_pseudoDensity 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_pseudoDensityKgM3 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_lithium.py::Lithium_TestCase::test_wrappedDensity 
[gw2] [ 29%] PASSED armi/materials/tests/test_lithium.py::Lithium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::MaterialConstructionTests::test_material_initialization 
[gw2] [ 29%] PASSED armi/materials/tests/test_materials.py::MaterialConstructionTests::test_material_initialization 
armi/materials/tests/test_materials.py::MaterialFindingTests::test_findMaterial 
[gw2] [ 29%] PASSED armi/materials/tests/test_materials.py::MaterialFindingTests::test_findMaterial 
armi/materials/tests/test_materials.py::MaterialFindingTests::test_namespacing 
[gw2] [ 29%] PASSED armi/materials/tests/test_materials.py::MaterialFindingTests::test_namespacing 
armi/materials/tests/test_materials.py::Californium_TestCase::test_TD 
[gw2] [ 29%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Californium_TestCase::test_cache 
[gw2] [ 29%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Californium_TestCase::test_density 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_density 
armi/materials/tests/test_materials.py::Californium_TestCase::test_densityKgM3 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Californium_TestCase::test_duplicate 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Californium_TestCase::test_getCorrosionRate 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_getCorrosionRate 
armi/materials/tests/test_materials.py::Californium_TestCase::test_isPicklable 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Californium_TestCase::test_porosities 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_porosities 
armi/materials/tests/test_materials.py::Californium_TestCase::test_propertyValidTemperature 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Californium_TestCase::test_pseudoDensity 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Californium_TestCase::test_pseudoDensityKgM3 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Californium_TestCase::test_wrappedDensity 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Californium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_TD 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_cache 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_density 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_density 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_densityKgM3 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_duplicate 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_isPicklable 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_propertyValidTemperature 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_pseudoDensity 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_pseudoDensityKgM3 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Cesium_TestCase::test_wrappedDensity 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Cesium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_TD 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_TD 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_cache 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_cache 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_density 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_density 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_densityKgM3 
[gw2] [ 30%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_duplicate 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_isPicklable 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_propertyValidTemperature 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_pseudoDensity 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_pseudoDensityKgM3 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Magnesium_TestCase::test_wrappedDensity 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Magnesium_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_TD 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_TD 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_cache 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_cache 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_density 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_density 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_densityKgM3 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_duplicate 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_isPicklable 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_linearExpansionPercent 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_linearExpansionPercent 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_propertyValidTemperature 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_pseudoDensity 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_pseudoDensityKgM3 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_wrappedDensity 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::MagnesiumOxide_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_TD 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_TD 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_cache 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_cache 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_density 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_density 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_densityKgM3 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_duplicate 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_isPicklable 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_propertyValidTemperature 
[gw2] [ 31%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_propertyValidTemperature 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_pseudoDensity 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_pseudoDensity 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_pseudoDensityKgM3 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_wrappedDensity 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::Molybdenum_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::MOX_TestCase::test_TD 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_TD 
armi/materials/tests/test_materials.py::MOX_TestCase::test_applyInputParams 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_applyInputParams 
armi/materials/tests/test_materials.py::MOX_TestCase::test_cache 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_cache 
armi/materials/tests/test_materials.py::MOX_TestCase::test_density 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_density 
armi/materials/tests/test_materials.py::MOX_TestCase::test_densityKgM3 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_densityKgM3 
armi/materials/tests/test_materials.py::MOX_TestCase::test_duplicate 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_duplicate 
armi/materials/tests/test_materials.py::MOX_TestCase::test_getMassFracPuO2 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_getMassFracPuO2 
armi/materials/tests/test_materials.py::MOX_TestCase::test_getMeltingPoint 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_getMeltingPoint 
armi/materials/tests/test_materials.py::MOX_TestCase::test_getMolFracPuO2 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_getMolFracPuO2 
armi/materials/tests/test_materials.py::MOX_TestCase::test_isPicklable 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_isPicklable 
armi/materials/tests/test_materials.py::MOX_TestCase::test_pseudoDensityKgM3 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_pseudoDensityKgM3 
armi/materials/tests/test_materials.py::MOX_TestCase::test_wrappedDensity 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::MOX_TestCase::test_wrappedDensity 
armi/materials/tests/test_materials.py::NaCl_TestCase::test_TD 
[gw2] [ 32%] PASSED armi/materials/tests/test_materials.py::NaCl_TestCase::test_TD 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberDensities 
[gw1] [ 32%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_mergeTwoXSLibFiles 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberDensities 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberDensitiesAnchor 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberDensitiesAnchor 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberFractions 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberFractions 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_unmodified 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_unmodified 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_densityMustBePositive 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_densityMustBePositive 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_nonConformantElementName 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_nonConformantElementName 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_numberDensitiesCannotSpecifyDensity 
[gw2] [ 32%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics_ErrorConditions::test_numberDensitiesCannotSpecifyDensity 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestNuclideFlagsExpansion::test_eleExpandInfoBasedOnCodeENDF 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestNuclideFlagsExpansion::test_eleExpandInfoBasedOnCodeENDF 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestNuclideFlagsExpansion::test_expandedNatural 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestNuclideFlagsExpansion::test_expandedNatural 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_contents 
[gw3] [ 33%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInC 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInCExplicitFissionProducts 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_contents 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_roundTrip 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_roundTrip 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_tinyMap 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBPRoundTrip::test_tinyMap 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleRead 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleRead 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleReadLatticeMap 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleReadLatticeMap 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleReadNoLatticeMap 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestGridBlueprintsSection::test_simpleReadNoLatticeMap 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestRZTGridBlueprint::test_construct 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestRZTGridBlueprint::test_construct 
armi/reactor/blueprints/tests/test_gridBlueprints.py::TestRZTGridBlueprint::test_geomFile 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_gridBlueprints.py::TestRZTGridBlueprint::test_geomFile 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_bothU235ZrWtFracModification 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_bothU235ZrWtFracModification 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_checkByComponentMaterialInput 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_checkByComponentMaterialInput 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_filterMaterialInput 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_filterMaterialInput 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidComponentModification 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidComponentModification 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidMatModName 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidMatModName 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidMatModType 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_invalidMatModType 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_matModsUpTheMRO 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_matModsUpTheMRO 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_materialModificationLength 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_materialModificationLength 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_noMaterialModifications 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_noMaterialModifications 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_theoreticalDensity 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_theoreticalDensity 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_byComponent_modification1 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_byComponent_modification1 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_byComponent_modification2 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_byComponent_modification2 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_modification 
[gw2] [ 33%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_u235_wt_frac_modification 
armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_zrWtFracModification 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_materialModifications.py::TestMaterialModifications::test_zrWtFracModification 
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_construct 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Isotxs_Merge_Tests::test_mergeTwoXSLibFiles 
armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_canRemoveIsotopes 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_construct 
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_excoreStructure 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_excoreStructure 
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_materialDataSummary 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_canRemoveIsotopes 
armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_materialDataSummary 
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_simpleRead 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_simpleRead 
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_spentFuelPool 
[gw3] [ 34%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInCExplicitFissionProducts 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInCNone 
[gw2] [ 34%] PASSED armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_spentFuelPool 
armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_neutronicConvergenceModifier 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_cannotMergeXSLibWithSameNuclideNames 
armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
[gw2] [ 34%] PASSED armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_neutronicConvergenceModifier 
armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_paramSweepConverter 
[gw2] [ 34%] PASSED armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_paramSweepConverter 
armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_settingsModifier 
[gw2] [ 34%] PASSED armi/reactor/converters/parameterSweeps/tests/test_paramSweepConverters.py::TestParamSweepConverters::test_settingsModifier 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialExpansionHeight::test_AssemblyAxialExpansionHeight 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_cannotMergeXSLibxWithDifferentGroupStructure 
armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialExpansionHeight::test_AssemblyAxialExpansionHeight 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_computeThermalExpansionFactors 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_computeThermalExpansionFactors 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_noMovementACLP 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_noMovementACLP 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_prescribedExpansionContractionConservation 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_prescribedExpansionContractionConservation 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_reset 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_reset 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_targetComponentMassConservation 
[gw3] [ 34%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAllNuclidesByTemperatureInCNone 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAvgNuclideTemperatureInC 
[gw2] [ 34%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_targetComponentMassConservation 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_thermalExpansionContractionConservation_complex 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_mergeEmptyXSLibWithOtherEssentiallyClonesTheOther 
armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_mergeTwoXSLibFiles 
[gw1] [ 34%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Gamiso_Merge_Tests::test_mergeTwoXSLibFiles 
armi/nuclearDataIO/tests/test_xsLibraries.py::Combined_Merge_Tests::test_mergeAllXSLibFiles 
[gw3] [ 34%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getAvgNuclideTemperatureInC 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFPDensities 
[gw3] [ 35%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFPDensities 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFissionProducts 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsLibraries.py::Combined_Merge_Tests::test_mergeAllXSLibFiles 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_getMicroXS 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_getMicroXS 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_getXS 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_getXS 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_2dXsArrangementIsCorrect 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_2dXsArrangementIsCorrect 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_createFromLabelFailsOnBadName 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_createFromLabelFailsOnBadName 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_creatingNuclidesDoesNotMessWithUnderlyingNuclideDict 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_creatingNuclidesDoesNotMessWithUnderlyingNuclideDict 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_isoaaDetails 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_isoaaDetails 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_modifyingNuclideAttributesUpdatesTheIsotxsNuclide 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_modifyingNuclideAttributesUpdatesTheIsotxsNuclide 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_newLabelsDontCauseWarnings 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_newLabelsDontCauseWarnings 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_nuclideBaseMethodsShouldNotFail 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_nuclideBaseMethodsShouldNotFail 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_oldLabelsCauseWarnings 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_oldLabelsCauseWarnings 
armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_scatterXsArrangementIsCorrect 
[gw1] [ 35%] PASSED armi/nuclearDataIO/tests/test_xsNuclides.py::NuclideTests::test_nuclide_scatterXsArrangementIsCorrect 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_atEOL 
[gw0] [ 35%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_load 
armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_loadSortSetting 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_atEOL 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_createInterfaces 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_createInterfaces 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_createInterfacesDisabled 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_createInterfacesDisabled 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_mainOperate 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_mainOperate 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_setStateToDefault 
[gw3] [ 35%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFissionProducts 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFissionProductsPass 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshots::test_setStateToDefault 
armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshotsSettings::test_getOperatorClassFromSettings 
[gw1] [ 35%] PASSED armi/operators/tests/test_operatorSnapshots.py::TestOperatorSnapshotsSettings::test_getOperatorClassFromSettings 
armi/operators/tests/test_operators.py::OperatorTests::test_addInterfaceSubclassCollision 
[gw1] [ 35%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_addInterfaceSubclassCollision 
armi/operators/tests/test_operators.py::OperatorTests::test_getActiveInterfaces 
[gw1] [ 35%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_getActiveInterfaces 
armi/operators/tests/test_operators.py::OperatorTests::test_interfaceIsActive 
[gw1] [ 35%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_interfaceIsActive 
armi/operators/tests/test_operators.py::OperatorTests::test_loadStateError 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_loadStateError 
armi/operators/tests/test_operators.py::OperatorTests::test_operatorData 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_operatorData 
armi/operators/tests/test_operators.py::OperatorTests::test_orderedInterfaces 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_orderedInterfaces 
armi/operators/tests/test_operators.py::OperatorTests::test_setStateToDefault 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_setStateToDefault 
armi/operators/tests/test_operators.py::OperatorTests::test_snapshotRequest 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::OperatorTests::test_snapshotRequest 
armi/operators/tests/test_operators.py::TestCreateOperator::test_createOperator 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestCreateOperator::test_createOperator 
armi/operators/tests/test_operators.py::TestTightCoupling::test_computeTightCouplingConvergence 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_computeTightCouplingConvergence 
armi/operators/tests/test_operators.py::TestTightCoupling::test_couplingIsActive 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_couplingIsActive 
armi/operators/tests/test_operators.py::TestTightCoupling::test_getStepLengths 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_getStepLengths 
armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_Inactive 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_Inactive 
armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_NoWriteDB 
[gw3] [ 36%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDetailedFissionProductsPass 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDriverBlock 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_NoWriteDB 
armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_WriteDB 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_WriteDB 
armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_notConverged 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_notConverged 
armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_skip 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestTightCoupling::test_performTightCoupling_skip 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getAvailabilityFactors 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getAvailabilityFactors 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getBurnSteps 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getBurnSteps 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getCycleLengths 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getCycleLengths 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getCycleNames 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getCycleNames 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getMaxBurnSteps 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getMaxBurnSteps 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getPowerFractions 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getPowerFractions 
armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getStepLengths 
[gw2] [ 36%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_thermalExpansionContractionConservation_complex 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_thermalExpansionContractionConservation_simple 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::CyclesSettingsTests::test_getStepLengths 
armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Coupled 
[gw2] [ 36%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestConservation::test_thermalExpansionContractionConservation_simple 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestManageCoreMesh::test_componentConservation 
[gw1] [ 36%] PASSED armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Coupled 
armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Cycle 
[gw1] [ 37%] PASSED armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Cycle 
armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Empty 
[gw1] [ 37%] PASSED armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_Empty 
armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_EveryNode 
[gw1] [ 37%] PASSED armi/operators/tests/test_operators.py::TestInterfaceAndEventHeaders::test_expandCycleAndTimeNodeArgs_EveryNode 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_flatPowerNoRotation 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getDriverBlock 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getFuelTemperature 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_getFuelTemperature 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isCriticalBucklingSearchActive 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isCriticalBucklingSearchActive 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isGammaXSGenerationEnabled 
[gw1] [ 37%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_flatPowerNoRotation 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_maxBurnupAtCenterNoRotation 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isGammaXSGenerationEnabled 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isSourceDriven 
[gw1] [ 37%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_maxBurnupAtCenterNoRotation 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_mismatchPinPowersAndLocations 
[gw2] [ 37%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestManageCoreMesh::test_componentConservation 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestManageCoreMesh::test_manageCoreMesh 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_isSourceDriven 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_latticePhysicsWriter 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_loadSortSetting 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_auxData 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_auxData 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_computeParents 
[gw1] [ 37%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_mismatchPinPowersAndLocations 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_noBlocksWithBurnup 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_computeParents 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_deleting 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_deleting 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_fileName 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_fileName 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_getArrayShape 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_getArrayShape 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_getH5File 
[gw3] [ 37%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_latticePhysicsWriter 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_setBlockNeutronVelocities 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_getH5File 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_grabLocalCommitHash 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_grabLocalCommitHash 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadBlueprints 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadBlueprints 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadCS 
[gw1] [ 37%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_noBlocksWithBurnup 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_oppositeRotation 
[gw0] [ 37%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadCS 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadOperator 
[gw3] [ 38%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_setBlockNeutronVelocities 
armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_writeTitle 
[gw1] [ 38%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestOptimalAssemblyRotation::test_oppositeRotation 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_buRotationWithFreshFeed 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestManageCoreMesh::test_manageCoreMesh 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_AssemblyAxialExpansionException 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_AssemblyAxialExpansionException 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_determineLinked 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_determineLinked 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_getLinkedComponents 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_getLinkedComponents 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_isFuelLocked 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_isFuelLocked 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_isTopDummyBlockPresent 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_isTopDummyBlockPresent 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_setExpansionFactors 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_setExpansionFactors 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_updateComponentTempsBy1DTempFieldRuntimeError 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_updateComponentTempsBy1DTempFieldRuntimeError 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_updateComponentTempsBy1DTempFieldValueError 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestExceptions::test_updateComponentTempsBy1DTempFieldValueError 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_determineTargetComponent 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_determineTargetComponent 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_determineTargetComponentBlockWithMultipleFlags 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_determineTargetComponentBlockWithMultipleFlags 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_manuallySetTargetComponent 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_manuallySetTargetComponent 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponent_NotFound 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponent_NotFound 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponent_singleSolid 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponent_singleSolid 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponet_MultipleFound 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestDetermineTargetComponent::test_specifyTargetComponet_MultipleFound 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestGetSolidComponents::test_getSolidComponents 
[gw2] [ 38%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestGetSolidComponents::test_getSolidComponents 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestInputHeightsConsideredHot::test_coldAssemblyExpansion 
[gw0] [ 38%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_loadOperator 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_mergeHistory 
[gw3] [ 38%] PASSED armi/physics/neutronics/latticePhysics/tests/test_latticeWriter.py::TestLatticePhysicsWriter::test_writeTitle 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_add 
[gw0] [ 38%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_mergeHistory 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_open 
[gw0] [ 38%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_open 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_prepRestartRun 
[gw1] [ 38%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_buRotationWithFreshFeed 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_buRotationWithStationaryRotation 
[gw3] [ 38%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_add 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_getBlocksInGroup 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_getBlocksInGroup 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_is_pickleable 
[gw1] [ 39%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_buRotationWithStationaryRotation 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_rotateInShuffleQueue 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollection::test_is_pickleable 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionMedian::test_createRepresentativeBlock 
[gw1] [ 39%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::TestFuelHandlerMgmtTools::test_rotateInShuffleQueue 
armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::SimpleRotationTests::test_simpleAssemblyRotation 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionMedian::test_createRepresentativeBlock 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionMedian::test_getBlockNuclideTemperature 
[gw1] [ 39%] PASSED armi/physics/fuelCycle/tests/test_assemblyRotationAlgorithms.py::SimpleRotationTests::test_simpleAssemblyRotation 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_dischargeSwap 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionMedian::test_getBlockNuclideTemperature 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_checkBlockSimilarity 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_checkBlockSimilarity 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_createRepresentativeBlock 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_createRepresentativeBlock 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_createRepresentativeBlockDissimilar 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_createRepresentativeBlockDissimilar 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_performAverageByComponent 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionAverage::test_performAverageByComponent 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentNumberDensities 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentNumberDensities 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperature 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperature 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperatureNoMass 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperatureNoMass 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperatureVariedWeights 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestComponentAveraging::test_getAverageComponentTemperatureVariedWeights 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage::test_ComponentAverageRepBlock 
[gw1] [ 39%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_dischargeSwap 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_dischargeSwapIncompatibleStationaryBlocks 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage::test_ComponentAverageRepBlock 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_ComponentAverage1DCylinder 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_prepRestartRun 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_readInputsFromDB 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_readInputsFromDB 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_replaceNones 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_replaceNones 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_splitDatabase 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_splitDatabase 
armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_writeToDB 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_writeToDB 
armi/bookkeeping/db/tests/test_database3.py::TestWriteReadDatabase::test_badData 
[gw3] [ 39%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_ComponentAverage1DCylinder 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_ComponentAverageDuctHet1DCylinder 
[gw0] [ 39%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestWriteReadDatabase::test_badData 
armi/bookkeeping/db/tests/test_database3.py::TestWriteReadDatabase::test_readWriteRoundTrip 
[gw3] [ 40%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_ComponentAverageDuctHet1DCylinder 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_checkComponentConsistency 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_database3.py::TestWriteReadDatabase::test_readWriteRoundTrip 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterfaceBOL::test_interactBOL 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterfaceBOL::test_interactBOL 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_demonstrateWritingInteractions 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_demonstrateWritingInteractions 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_distributable 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_distributable 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_interactEveryNodeReturnTightCoupling 
[gw3] [ 40%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionComponentAverage1DCylinder::test_checkComponentConsistency 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionFluxWeightedAverage::test_createRepresentativeBlock 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_interactEveryNodeReturnTightCoupling 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_noSyncDbAfterWrite 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_noSyncDbAfterWrite 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_syncDbAfterWrite 
[gw1] [ 40%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_dischargeSwapIncompatibleStationaryBlocks 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findByCoords 
[gw3] [ 40%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionFluxWeightedAverage::test_createRepresentativeBlock 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionFluxWeightedAverage::test_invalidWeights 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_syncDbAfterWrite 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_timeNodeLoop_tightCoupling 
[gw3] [ 40%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestBlockCollectionFluxWeightedAverage::test_invalidWeights 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_addXsGroupsFromBlocks 
[gw0] [ 40%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseInterface::test_timeNodeLoop_tightCoupling 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_getHistory 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestInputHeightsConsideredHot::test_coldAssemblyExpansion 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_AnnularHexOverlappingThickAnnularHex 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_AnnularHexOverlappingThickAnnularHex 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_annularPinNotOverlappingWithAnnulus 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_annularPinNotOverlappingWithAnnulus 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_annularPinOverlappingWithAnnuls 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_annularPinOverlappingWithAnnuls 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_differentMultNotOverlapping 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_differentMultNotOverlapping 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_liquids 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_liquids 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_overlappingSolidPins 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_overlappingSolidPins 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_solidPinNotOverlappingAnnulus 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_solidPinNotOverlappingAnnulus 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_solidPinOverlappingWithAnnulus 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_solidPinOverlappingWithAnnulus 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_thinAnnularPinOverlappingWithThickAnnulus 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_thinAnnularPinOverlappingWithThickAnnulus 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_unshapedComponentAndCircle 
[gw2] [ 40%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestComponentLinks::test_unshapedComponentAndCircle 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialLinkHelper::test_construct 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialLinkHelper::test_construct 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialLinkHelper::test_override 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestAxialLinkHelper::test_override 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_emptyBlocks 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_emptyBlocks 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_multiBlock 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_multiBlock 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_onAssembly 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_onAssembly 
armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_singleBlock 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_axialExpansionChanger.py::TestBlockLink::test_singleBlock 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_buildInsideDuct 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_buildInsideDuct 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_build_NthRing 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_build_NthRing 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convert 
[gw3] [ 41%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_addXsGroupsFromBlocks 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_calcWeightedBurnup 
[gw0] [ 41%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_getHistory 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_getHistoryByLocation 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convert 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertCartesianLatticeWithFuelDriver 
[gw3] [ 41%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_calcWeightedBurnup 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_copyPregeneratedFiles 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertCartesianLatticeWithFuelDriver 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertHexWithFuelDriver 
[gw0] [ 41%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_getHistoryByLocation 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_metaDataEndFail 
[gw1] [ 41%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findByCoords 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findHighBu 
[gw3] [ 41%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_copyPregeneratedFiles 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_createRepresentativeBlocksUsingExistingBlocks 
[gw0] [ 41%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_metaDataEndFail 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_metaData_endSuccessfully 
[gw0] [ 41%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_metaData_endSuccessfully 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_writeSystemAttributes 
[gw0] [ 41%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter::test_writeSystemAttributes 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCore 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertHexWithFuelDriver 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertHexWithFuelDriverOnNegativeComponentAreaBlock 
[gw3] [ 41%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_createRepresentativeBlocksUsingExistingBlocks 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_createRepresentativeBlocksUsingExistingBlocksDisableValidBlockTypes 
[gw1] [ 41%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findHighBu 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findInSFP 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_convertHexWithFuelDriverOnNegativeComponentAreaBlock 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveIntoNegativeArea 
[gw2] [ 41%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveIntoNegativeArea 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveIntoZeroArea 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveIntoZeroArea 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveLinerIntoClad 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveLinerIntoClad 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveMultiple 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveMultiple 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveNegativeArea 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveNegativeArea 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveWireIntoCoolant 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveWireIntoCoolant 
armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveZeroArea 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestBlockConverter::test_dissolveZeroArea 
armi/reactor/converters/tests/test_blockConverter.py::TestToCircles::test_fromHex 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestToCircles::test_fromHex 
armi/reactor/converters/tests/test_blockConverter.py::TestToCircles::test_fromRingOfRods 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_blockConverter.py::TestToCircles::test_fromRingOfRods 
armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_addRing 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_createRepresentativeBlocksUsingExistingBlocksDisableValidBlockTypes 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_disableEnvGroupUpdates 
[gw1] [ 42%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findInSFP 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findMany 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_disableEnvGroupUpdates 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_enableEnvGroupUpdates 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_addRing 
armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_getAssembliesInSector 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_enableEnvGroupUpdates 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_getNextAvailableXsType 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_getAssembliesInSector 
armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_setNumberOfFuelAssems 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_getNextAvailableXsType 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_getRepresentativeBlocks 
[gw1] [ 42%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findMany 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findWithMinMax 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestGeometryConverters::test_setNumberOfFuelAssems 
armi/reactor/converters/tests/test_geometryConverters.py::TestHexToRZConverter::test_convert 
[gw0] [ 42%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCore 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreFromFactory 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_getRepresentativeBlocks 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactAllCoupled 
[gw1] [ 42%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_findWithMinMax 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getAssembliesInRings 
[gw3] [ 42%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactAllCoupled 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactBOC 
[gw0] [ 42%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreFromFactory 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreFromFactoryWithCS 
[gw2] [ 42%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestHexToRZConverter::test_convert 
armi/reactor/converters/tests/test_geometryConverters.py::TestHexToRZConverter::test_createHomogenizedRZTBlock 
[gw0] [ 42%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreFromFactoryWithCS 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreWithCS 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactBOC 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactBOL 
[gw1] [ 43%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getAssembliesInRings 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getFactorList 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCoreWithCS 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_loadReadOnly 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactBOL 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactEveryNode 
[gw2] [ 43%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestHexToRZConverter::test_createHomogenizedRZTBlock 
armi/reactor/converters/tests/test_geometryConverters.py::TestEdgeAssemblyChanger::test_edgeAssemblies 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_loadReadOnly 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_readWithoutInputs 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactEveryNode 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactFirstCoupledIteration 
[gw1] [ 43%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getFactorList 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getParamMax 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_readWithoutInputs 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_readWritten 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_interactFirstCoupledIteration 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_setBuGroupBounds 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_readWritten 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_timesteps 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_timesteps 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_variousTypesWork 
[gw2] [ 43%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestEdgeAssemblyChanger::test_edgeAssemblies 
armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_growToFullCoreFromThirdCore 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_variousTypesWork 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestBadName::test_badDBName 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestBadName::test_badDBName 
armi/bookkeeping/db/tests/test_databaseInterface.py::TestStandardFollowOn::test_standardRestart 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_setBuGroupBounds 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_setTempGroupBounds 
[gw1] [ 43%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_getParamMax 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_interactBOC 
[gw3] [ 43%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_setTempGroupBounds 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_updateBurnupGroups 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_databaseInterface.py::TestStandardFollowOn::test_standardRestart 
armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_backwardsCompatible 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_backwardsCompatible 
armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_flatten 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_flatten 
armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_roundTrip 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_roundTrip 
armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_roundTripBool 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_jaggedArray.py::TestJaggedArray::test_roundTripBool 
armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_close 
[gw0] [ 43%] PASSED armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_close 
armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPacking 
[gw0] [ 44%] PASSED armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPacking 
armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPackingOldVersion 
[gw0] [ 44%] PASSED armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPackingOldVersion 
armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPackingOlderVersions 
[gw0] [ 44%] PASSED armi/bookkeeping/db/tests/test_layout.py::TestLocationPacking::test_locationPackingOlderVersions 
armi/bookkeeping/db/tests/test_passiveDBLoadPlugin.py::TestPassiveDBLoadPlugin::test_passiveDBLoadPlugin 
[gw0] [ 44%] PASSED armi/bookkeeping/db/tests/test_passiveDBLoadPlugin.py::TestPassiveDBLoadPlugin::test_passiveDBLoadPlugin 
armi/bookkeeping/db/tests/test_passiveDBLoadPlugin.py::TestPassThroughYamlize::test_passThroughYamlizeExample1 
[gw0] [ 44%] PASSED armi/bookkeeping/db/tests/test_passiveDBLoadPlugin.py::TestPassThroughYamlize::test_passThroughYamlizeExample1 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_neutronicsPlotFunctions 
[gw0] [ 44%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_neutronicsPlotFunctions 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportBasics 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_updateBurnupGroups 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_xsgmIsRunBeforeXS 
[gw0] [ 44%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportBasics 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportContents 
[gw2] [ 44%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_growToFullCoreFromThirdCore 
armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_initNewFullReactor 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManager::test_xsgmIsRunBeforeXS 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManagerWithTempGrouping::test_updateEnvironmentGroups 
[gw1] [ 44%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_interactBOC 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_isAssemblyInAZone 
[gw0] [ 44%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportContents 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportContentsEnd 
[gw0] [ 44%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportContentsEnd 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportLogs 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestCrossSectionGroupManagerWithTempGrouping::test_updateEnvironmentGroups 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestXSNumberConverters::test_conversion 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestXSNumberConverters::test_conversion 
armi/physics/neutronics/tests/test_crossSectionManager.py::TestXSNumberConverters::test_conversion_2digit 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionManager.py::TestXSNumberConverters::test_conversion_2digit 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_badCrossSections 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_badCrossSections 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_crossSections 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_crossSections 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_homogeneousXsDefaultSettingAssignment 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_homogeneousXsDefaultSettingAssignment 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_optionalKey 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_optionalKey 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_pregeneratedCrossSections 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_pregeneratedCrossSections 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_pregeneratedFluxInputs 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_pregeneratedFluxInputs 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_prioritization 
[gw3] [ 44%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_prioritization 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_setDefaultSettingsByLowestEnvGroupHomogeneous 
[gw0] [ 44%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_reportLogs 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_tableCreation 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_setDefaultSettingsByLowestEnvGroupHomogeneous 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_setDefaultSettingsByLowestEnvGroupOneDimensional 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestCrossSectionSettings::test_setDefaultSettingsByLowestEnvGroupOneDimensional 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_caseSettings 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_caseSettings 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_csBlockRepresentation 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_csBlockRepresentation 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_csBlockRepresentationFileLocation 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_csBlockRepresentationFileLocation 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_xsSettingsSetDefault 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_xsSettingsSetDefault 
armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_yamlIO 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionSettings.py::TestXSSettings::test_yamlIO 
armi/physics/neutronics/tests/test_crossSectionTable.py::TestCrossSectionTable::test_isotopicDepletionInterface 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_tableCreation 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_timeSeries 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionTable.py::TestCrossSectionTable::test_isotopicDepletionInterface 
armi/physics/neutronics/tests/test_crossSectionTable.py::TestCrossSectionTable::test_makeTable 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_timeSeries 
armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_writeReports 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_newReport.py::TestReportContentCreation::test_writeReports 
armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getNodeName 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getNodeName 
armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfo 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfo 
armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoLinux 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoLinux 
armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoMac 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoMac 
armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoWindows 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportingUtils::test_getSystemInfoWindows 
armi/bookkeeping/report/tests/test_report.py::TestReport::test_getData 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReport::test_getData 
armi/bookkeeping/report/tests/test_report.py::TestReport::test_reactorSpecificReporting 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReport::test_reactorSpecificReporting 
armi/bookkeeping/report/tests/test_report.py::TestReport::test_setData 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReport::test_setData 
armi/bookkeeping/report/tests/test_report.py::TestReport::test_writeWelcomeHeaders 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReport::test_writeWelcomeHeaders 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_distributableReportInt 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_distributableReportInt 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactBOC 
[gw0] [ 45%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactBOC 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactBOLReportInt 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_crossSectionTable.py::TestCrossSectionTable::test_makeTable 
armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_consistenciesBetweenGroupStructureAndGroupStructureType 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_consistenciesBetweenGroupStructureAndGroupStructureType 
armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_getFastFluxGroupCutoff 
[gw3] [ 45%] PASSED armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_getFastFluxGroupCutoff 
armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_invalidGroupStructureType 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_energyGroups.py::TestEnergyGroups::test_invalidGroupStructureType 
armi/physics/neutronics/tests/test_macroXSGenerationInterface.py::TestMacroXSGenerationInterface::test_macroXSGenerationInterfaceBasics 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_macroXSGenerationInterface.py::TestMacroXSGenerationInterface::test_macroXSGenerationInterfaceBasics 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestPlugin::test_defineBlueprintsSections 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestPlugin::test_defineBlueprintsSections 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestPlugin::test_exposeInterfaces 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestPlugin::test_exposeInterfaces 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_customSettingObjectIO 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_customSettingObjectIO 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_customSettingRoundTrip 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_customSettingRoundTrip 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_defineBlueprintsSections 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_defineBlueprintsSections 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_exposeInterfaces 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_exposeInterfaces 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_neutronicsSettingsLoaded 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::TestNeutronicsPlugin::test_neutronicsSettingsLoaded 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::NeutronicsReactorTests::test_kineticsParameterAssignment 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::NeutronicsReactorTests::test_kineticsParameterAssignment 
armi/physics/neutronics/tests/test_neutronicsPlugin.py::NeutronicsReactorTests::test_neutronicsSettingsValidators 
[gw2] [ 46%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_initNewFullReactor 
armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_skipGrowToFullCoreWhenAlreadyFullCore 
[gw1] [ 46%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_isAssemblyInAZone 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPin 
[gw0] [ 46%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactBOLReportInt 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEOC 
[gw0] [ 46%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEOC 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEOL 
[gw3] [ 46%] PASSED armi/physics/neutronics/tests/test_neutronicsPlugin.py::NeutronicsReactorTests::test_neutronicsSettingsValidators 
armi/physics/tests/test_executers.py::TestExecutionOptions::test_runningDirectoryPath 
[gw3] [ 46%] PASSED armi/physics/tests/test_executers.py::TestExecutionOptions::test_runningDirectoryPath 
armi/physics/tests/test_executers.py::TestExecuters::test_collectInputsAndOutputs 
[gw3] [ 46%] PASSED armi/physics/tests/test_executers.py::TestExecuters::test_collectInputsAndOutputs 
armi/physics/tests/test_executers.py::TestExecuters::test_runExternalExecutable 
[gw3] [ 46%] PASSED armi/physics/tests/test_executers.py::TestExecuters::test_runExternalExecutable 
armi/physics/tests/test_executers.py::TestExecuters::test_updateRunDir 
[gw3] [ 46%] PASSED armi/physics/tests/test_executers.py::TestExecuters::test_updateRunDir 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestPlugin::test_defineBlueprintsSections 
[gw3] [ 46%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestPlugin::test_defineBlueprintsSections 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestPlugin::test_exposeInterfaces 
[gw3] [ 46%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestPlugin::test_exposeInterfaces 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_defineBlueprintsSections 
[gw3] [ 46%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_defineBlueprintsSections 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_exposeInterfaces 
[gw3] [ 46%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_exposeInterfaces 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_thermalHydraulicsSettingsLoaded 
[gw3] [ 46%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_thermalHydraulicsSettingsLoaded 
armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_thermalHydraulicsSettingsSet 
[gw3] [ 47%] PASSED armi/physics/thermalHydraulics/tests/test_thermalHydraulicsPlugin.py::TestThermalHydraulicsPlugin::test_thermalHydraulicsSettingsSet 
armi/reactor/blueprints/tests/test_assemblyBlueprints.py::TestMaterialModifications::test_checkParamConsistency 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_assemblyBlueprints.py::TestMaterialModifications::test_checkParamConsistency 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_blockLattice 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_blockLattice 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_constructSpatialGrid 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_constructSpatialGrid 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_densityConsistentWithComponentConstructor 
[gw0] [ 47%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEOL 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEveryNode 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_densityConsistentWithComponentConstructor 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_explicitFlags 
[gw0] [ 47%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_interactEveryNode 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_printReports 
[gw0] [ 47%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_printReports 
armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_writeReports 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_explicitFlags 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_getLocatorsAtLatticePositions 
[gw0] [ 47%] PASSED armi/bookkeeping/report/tests/test_report.py::TestReportInterface::test_writeReports 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_calcMGFluence 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_getLocatorsAtLatticePositions 
armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_nonLatticeComponentHasRightMult 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blockBlueprints.py::TestGriddedBlock::test_nonLatticeComponentHasRightMult 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_componentDimensions 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_componentDimensions 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_getAssemblyTypeBySpecifier 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_getAssemblyTypeBySpecifier 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_nuclides 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_nuclides 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_roundTripCompleteBP 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_roundTripCompleteBP 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_specialIsotopicVectors 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_specialIsotopicVectors 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_traceNuclides 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprints::test_traceNuclides 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_assemblyParameters 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_assemblyParameters 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_cladding_invalid 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_cladding_invalid 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_componentGroupInput 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_componentGroupInput 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_components 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_components 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_customIsotopics 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_customIsotopics 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_merge 
[gw3] [ 47%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_merge 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_noDuplicateKeysInYamlBlueprints 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_noDuplicateKeysInYamlBlueprints 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclideFlags 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclideFlags 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclidesMc2v2 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclidesMc2v2 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclidesMc2v3 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_nuclidesMc2v3 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_topLevelComponentInput 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_topLevelComponentInput 
armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_withoutBlocks 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_blueprints.py::TestBlueprintsSchema::test_withoutBlocks 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_autoDepletable 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_autoDepletable 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationAmericiumCustomIsotopics 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationAmericiumCustomIsotopics 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationControlCustomIsotopics 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationControlCustomIsotopics 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationIncompleteBurnChain 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationIncompleteBurnChain 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationThoriumBurnCustomIsotopics 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationThoriumBurnCustomIsotopics 
armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationThoriumNoBurnCustomIsotopics 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_componentBlueprint.py::TestComponentBlueprint::test_componentInitializationThoriumNoBurnCustomIsotopics 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_customDensityLogsAndErrors 
[gw2] [ 48%] PASSED armi/reactor/converters/tests/test_geometryConverters.py::TestThirdCoreHexToFullCoreChanger::test_skipGrowToFullCoreWhenAlreadyFullCore 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialBinsLargeCore 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_customDensityLogsAndErrors 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_densitiesAppliedToNonCustomMaterials 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_densitiesAppliedToNonCustomMaterials 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_densitiesAppliedToNonCustomMaterialsFluid 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_densitiesAppliedToNonCustomMaterialsFluid 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_expandedNatural 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_expandedNatural 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_infDiluteAreOnlyNatural 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_infDiluteAreOnlyNatural 
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_massFractionsAreApplied 
[gw3] [ 48%] PASSED armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_massFractionsAreApplied 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_iteration 
[gw3] [ 48%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_iteration 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_len 
[gw3] [ 48%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_len 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_makeAxialSnapList 
[gw1] [ 48%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPin 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPinGamma 
[gw3] [ 48%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_makeAxialSnapList 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_moveTo 
[gw3] [ 48%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_moveTo 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_notesParameter 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_notesParameter 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_pinPlenumVolume 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_pinPlenumVolume 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_reattach 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_reattach 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_reestablishBlockOrder 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_reestablishBlockOrder 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_renameBlocksAccordingToAssemblyNum 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_renameBlocksAccordingToAssemblyNum 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_rotate 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_rotate 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_scaleParamsWhenMoved 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_scaleParamsWhenMoved 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_snapAxialMeshToReference 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_snapAxialMeshToReference 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_updateFromAssembly 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_updateFromAssembly 
armi/reactor/tests/test_assemblies.py::AssemblyInReactor_TestCase::test_snapAxialMeshToReferenceConservingMassBasedOnBlockIgniter 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::AssemblyInReactor_TestCase::test_snapAxialMeshToReferenceConservingMassBasedOnBlockIgniter 
armi/reactor/tests/test_assemblies.py::AssemblyInReactor_TestCase::test_snapAxialMeshToReferenceConservingMassBasedOnBlockShield 
[gw1] [ 49%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPinGamma 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPinNeutron 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::AssemblyInReactor_TestCase::test_snapAxialMeshToReferenceConservingMassBasedOnBlockShield 
armi/reactor/tests/test_assemblies.py::AnnularFuelTestCase::test_areaCheck 
[gw3] [ 49%] PASSED armi/reactor/tests/test_assemblies.py::AnnularFuelTestCase::test_areaCheck 
armi/reactor/tests/test_blocks.py::TestDetailedNDensUpdate::test_updateDetailedNdens 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::TestDetailedNDensUpdate::test_updateDetailedNdens 
armi/reactor/tests/test_blocks.py::TestValidateSFPSpatialGrids::test_SFPSpatialGridExists 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::TestValidateSFPSpatialGrids::test_SFPSpatialGridExists 
armi/reactor/tests/test_blocks.py::TestValidateSFPSpatialGrids::test_noSFPExists 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::TestValidateSFPSpatialGrids::test_noSFPExists 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_100_getPinPitch 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_100_getPinPitch 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_101_getPitch 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_101_getPitch 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_102_setPitch 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_102_setPitch 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_106_getAreaFractions 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_106_getAreaFractions 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_27b_setEnvGroup 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_27b_setEnvGroup 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_add 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_add 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_adjustDensity 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_adjustDensity 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_adjustUEnrich 
[gw3] [ 49%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_adjustUEnrich 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_clearDensity 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_clearDensity 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_completeInitialLoading 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_completeInitialLoading 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentAreaWithOverlappingComponents 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentAreaWithOverlappingComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentMassDensityVolumeBetweenColdBlockAndColdComponents 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentMassDensityVolumeBetweenColdBlockAndColdComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentMassDensityVolumeBetweenHotBlockAndHotComponents 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_consistentMassDensityVolumeBetweenHotBlockAndHotComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_duplicate 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_duplicate 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_expandAllElementalsToIsotopics 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_expandAllElementalsToIsotopics 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_expandElementalToIsotopics 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_expandElementalToIsotopics 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponent 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponent 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentAreaFrac 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentAreaFrac 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentByName 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentByName 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentNames 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentNames 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponents 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsInLinkedOrder 
[gw2] [ 50%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialBinsLargeCore 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialBinsSmallCore 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsInLinkedOrder 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsOfMaterial 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsOfMaterial 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsOfShape 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getComponentsOfShape 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getDimensions 
[gw1] [ 50%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_linPowByPinNeutron 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_outage 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getDimensions 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFissileMassEnrich 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFissileMassEnrich 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFlowArea 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFlowArea 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFlowAreaPerPin 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getFlowAreaPerPin 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getHMDens 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getHMDens 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getHydraulicDiameter 
[gw3] [ 50%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getHydraulicDiameter 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMass 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMass 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMasses 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMasses 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMfp 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMfp 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMgFlux 
[gw2] [ 51%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialBinsSmallCore 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialCoordinatesLargeCore 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMgFlux 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMicroSuffix 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getMicroSuffix 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumComponents 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumPins 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumPins 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumberDensity 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumberDensity 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumberOfAtoms 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getNumberOfAtoms 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getPlenumPin 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getPlenumPin 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getPu 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getPu 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getReactionRates 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getReactionRates 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensity 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensity 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensityEdgeCases 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensityEdgeCases 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensityMultipleLiner 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSmearDensityMultipleLiner 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSortedComponentsInsideOfComponentClad 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSortedComponentsInsideOfComponentClad 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSortedComponentsInsideOfComponentDuct 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getSortedComponentsInsideOfComponentDuct 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getTotalMass 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getTotalMass 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getTotalNDens 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getTotalNDens 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getType 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getType 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getUraniumMassEnrich 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getUraniumMassEnrich 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getUraniumNumEnrich 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getUraniumNumEnrich 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getVolumeFractionWithoutParent 
[gw3] [ 51%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getVolumeFractionWithoutParent 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getVolumeFractionsWithZeroHeight 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getVolumeFractionsWithZeroHeight 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeter 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeter 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterCircularInnerDuct 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterCircularInnerDuct 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterDepletable 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterDepletable 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterHexInnerDuct 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getWettedPerimeterHexInnerDuct 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_getXsType 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_getXsType 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasComponents 
[gw1] [ 52%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_outage 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_outageEdgeCase 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasComponents 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasFlags 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasFlags 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasPinPitch 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_hasPinPitch 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_homogenizedMixture 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_homogenizedMixture 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_mergeWithBlock 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_mergeWithBlock 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_pinMgFluxes 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_pinMgFluxes 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_removeMass 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_removeMass 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_replaceBlockWithBlock 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_replaceBlockWithBlock 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setBuLimitInfo 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setBuLimitInfo 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setImportantParams 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setImportantParams 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setLinPowByPin 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setLinPowByPin 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setLocation 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setLocation 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setMass 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setMass 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setNumberDensities 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setNumberDensities 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setNumberDensity 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setNumberDensity 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setPitch 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setPitch 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setType 
[gw3] [ 52%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setType 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_setZeroHeight 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_setZeroHeight 
armi/reactor/tests/test_blocks.py::Block_TestCase::test_timeNodeParams 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::Block_TestCase::test_timeNodeParams 
armi/reactor/tests/test_blocks.py::BlockInputHeightsTests::test_foundReactor 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockInputHeightsTests::test_foundReactor 
armi/reactor/tests/test_blocks.py::BlockInputHeightsTests::test_noBlueprints 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockInputHeightsTests::test_noBlueprints 
armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getCaptureEnergyGenerationConstants 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getCaptureEnergyGenerationConstants 
armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getFissionEnergyDepositionConstants 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getFissionEnergyDepositionConstants 
armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getGammaEnergyDepositionConstants 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getGammaEnergyDepositionConstants 
armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getNeutronEnergyDepositionConstants 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getNeutronEnergyDepositionConstants 
armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getTotalEnergyGenerationConstants 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::BlockEnergyDepositionConstants::test_getTotalEnergyGenerationConstants 
armi/reactor/tests/test_blocks.py::TestNegativeVolume::test_negativeVolume 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::TestNegativeVolume::test_negativeVolume 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_block_dims 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_block_dims 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_component_type 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_component_type 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_coords 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_coords 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getArea 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getArea 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getDuctPitch 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getDuctPitch 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getNumPins 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getNumPins 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCenterFlatToFlat 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCenterFlatToFlat 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCoords 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCoords 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCoordsAndLocsAgree 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinCoordsAndLocsAgree 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinLocations 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPinLocations 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPitchHomogeneousBlock 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_getPitchHomogeneousBlock 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridCreation 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridCreation 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridNotCreatedMultipleMultiplicities 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridNotCreatedMultipleMultiplicities 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridNumPinsAndLocations 
[gw3] [ 53%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_gridNumPinsAndLocations 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_retainState 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_retainState 
armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_symmetryFactor 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::HexBlock_TestCase::test_symmetryFactor 
armi/reactor/tests/test_blocks.py::TestHexBlockOrientation::test_validateReactorCornersUp 
[gw1] [ 54%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_outageEdgeCase 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_processMoveList 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::TestHexBlockOrientation::test_validateReactorCornersUp 
armi/reactor/tests/test_blocks.py::TestHexBlockOrientation::test_validateReactorFlatsUp 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::TestHexBlockOrientation::test_validateReactorFlatsUp 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_axial 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_axial 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getHydraulicDiameter 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getHydraulicDiameter 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getThetaRZGrid 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getThetaRZGrid 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getWettedPerimeter 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_getWettedPerimeter 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_radii 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_radii 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_theta 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_theta 
armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_verifyBlockDims 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::ThRZBlock_TestCase::test_verifyBlockDims 
armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getCartesianGrid 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getCartesianGrid 
armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getHydraulicDiameter 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getHydraulicDiameter 
armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getPitchHomogeneousBlock 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getPitchHomogeneousBlock 
armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getPitchSquare 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getPitchSquare 
armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getWettedPerimeter 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::CartesianBlock_TestCase::test_getWettedPerimeter 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_coldMass 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_coldMass 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_dimensionDuctHeatup 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_dimensionDuctHeatup 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_heightExpansionDifferences 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_heightExpansionDifferences 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_massCladHeatup 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_massCladHeatup 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_massConsistency 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_massConsistency 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_massCoolHeatup 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_massCoolHeatup 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_massDuctHeatup 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_massDuctHeatup 
armi/reactor/tests/test_blocks.py::MassConservationTests::test_massFuelHeatup 
[gw3] [ 54%] PASSED armi/reactor/tests/test_blocks.py::MassConservationTests::test_massFuelHeatup 
armi/reactor/tests/test_components.py::TestComponentFactory::test_componentInitializationAndDuplication 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentFactory::test_componentInitializationAndDuplication 
armi/reactor/tests/test_components.py::TestComponentFactory::test_factory 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentFactory::test_factory 
armi/reactor/tests/test_components.py::TestComponentFactory::test_factoryBadShapeName 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentFactory::test_factoryBadShapeName 
armi/reactor/tests/test_components.py::TestComponentFactory::test_invalidCoolantComponentAssignment 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentFactory::test_invalidCoolantComponentAssignment 
armi/reactor/tests/test_components.py::TestComponentNDens::test_changeNDensByFactor 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentNDens::test_changeNDensByFactor 
armi/reactor/tests/test_components.py::TestComponentNDens::test_changeNDensByFactorWithExtraParams 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentNDens::test_changeNDensByFactorWithExtraParams 
armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensities 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensities 
armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensitiesWithExpansion 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensitiesWithExpansion 
armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensity 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponentNDens::test_setNumberDensity 
armi/reactor/tests/test_components.py::TestComponent::test_initializeComponentMaterial 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponent::test_initializeComponentMaterial 
armi/reactor/tests/test_components.py::TestComponent::test_solid_material 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestComponent::test_solid_material 
armi/reactor/tests/test_components.py::TestNullComponent::test_cmp 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestNullComponent::test_cmp 
armi/reactor/tests/test_components.py::TestNullComponent::test_getDimension 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestNullComponent::test_getDimension 
armi/reactor/tests/test_components.py::TestNullComponent::test_nonzero 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestNullComponent::test_nonzero 
armi/reactor/tests/test_components.py::TestUnshapedComponent::test_component_less_than 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestUnshapedComponent::test_component_less_than 
armi/reactor/tests/test_components.py::TestUnshapedComponent::test_fromComponent 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestUnshapedComponent::test_fromComponent 
armi/reactor/tests/test_components.py::TestUnshapedComponent::test_getBoundingCircleOuterDiameter 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestUnshapedComponent::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestUnshapedComponent::test_getComponentArea 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestUnshapedComponent::test_getComponentArea 
armi/reactor/tests/test_components.py::TestShapedComponent::test_density 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestShapedComponent::test_density 
armi/reactor/tests/test_components.py::TestShapedComponent::test_densityConsistent 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestShapedComponent::test_densityConsistent 
armi/reactor/tests/test_components.py::TestShapedComponent::test_preserveMassDuringThermalExpansion 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestShapedComponent::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestShapedComponent::test_volumeAfterClearCache 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestShapedComponent::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestDerivedShape::test_computeVolume 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_computeVolume 
armi/reactor/tests/test_components.py::TestDerivedShape::test_density 
[gw3] [ 55%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_density 
armi/reactor/tests/test_components.py::TestDerivedShape::test_densityConsistent 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_densityConsistent 
armi/reactor/tests/test_components.py::TestDerivedShape::test_getBoundingCircleOuterDiameter 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestDerivedShape::test_preserveMassDuringThermalExpansion 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestDerivedShape::test_volumeAfterClearCache 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestDerivedShape::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestDerivedShapeGetArea::test_getAreaColdTrue 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestDerivedShapeGetArea::test_getAreaColdTrue 
armi/reactor/tests/test_components.py::TestComponentSort::test_sorting 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestComponentSort::test_sorting 
armi/reactor/tests/test_components.py::TestCircle::test_badComponentName 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_badComponentName 
armi/reactor/tests/test_components.py::TestCircle::test_changeNumberDensities 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_changeNumberDensities 
armi/reactor/tests/test_components.py::TestCircle::test_componentInteractionsLinkingByDimensions 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_componentInteractionsLinkingByDimensions 
armi/reactor/tests/test_components.py::TestCircle::test_componentInteractionsLinkingBySubtraction 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_componentInteractionsLinkingBySubtraction 
armi/reactor/tests/test_components.py::TestCircle::test_density 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_density 
armi/reactor/tests/test_components.py::TestCircle::test_densityConsistent 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestCircle::test_dimensionThermallyExpands 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestCircle::test_fuelMass 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_fuelMass 
armi/reactor/tests/test_components.py::TestCircle::test_getArea 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getArea 
armi/reactor/tests/test_components.py::TestCircle::test_getBoundingCircleOuterDiameter 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestCircle::test_getCircleInnerDiameter 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestCircle::test_getDimension 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getDimension 
armi/reactor/tests/test_components.py::TestCircle::test_getNumberDensities 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getNumberDensities 
armi/reactor/tests/test_components.py::TestCircle::test_getThermalExpansionFactorConservedMassByLinearExpansionPercent 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_getThermalExpansionFactorConservedMassByLinearExpansionPercent 
armi/reactor/tests/test_components.py::TestCircle::test_preserveMassDuringThermalExpansion 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestCircle::test_theoreticalDensitySetter 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_theoreticalDensitySetter 
armi/reactor/tests/test_components.py::TestCircle::test_thermallyExpands 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestCircle::test_volumeAfterClearCache 
[gw3] [ 56%] PASSED armi/reactor/tests/test_components.py::TestCircle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestComponentExpansion::test_B4CExpansion 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestComponentExpansion::test_B4CExpansion 
armi/reactor/tests/test_components.py::TestComponentExpansion::test_HT9Expansion 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestComponentExpansion::test_HT9Expansion 
armi/reactor/tests/test_components.py::TestComponentExpansion::test_UZrExpansion 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestComponentExpansion::test_UZrExpansion 
armi/reactor/tests/test_components.py::TestTriangle::test_density 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_density 
armi/reactor/tests/test_components.py::TestTriangle::test_densityConsistent 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestTriangle::test_dimensionThermallyExpands 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestTriangle::test_getArea 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_getArea 
armi/reactor/tests/test_components.py::TestTriangle::test_preserveMassDuringThermalExpansion 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestTriangle::test_thermallyExpands 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestTriangle::test_volumeAfterClearCache 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestTriangle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestRectangle::test_density 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_density 
armi/reactor/tests/test_components.py::TestRectangle::test_densityConsistent 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestRectangle::test_dimensionThermallyExpands 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestRectangle::test_getArea 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_getArea 
armi/reactor/tests/test_components.py::TestRectangle::test_getBoundingCircleOuterDiameter 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestRectangle::test_getCircleInnerDiameter 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestRectangle::test_negativeArea 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_negativeArea 
armi/reactor/tests/test_components.py::TestRectangle::test_preserveMassDuringThermalExpansion 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestRectangle::test_thermallyExpands 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestRectangle::test_volumeAfterClearCache 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestRectangle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_density 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_density 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_densityConsistent 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_dimensionThermallyExpands 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_getArea 
[gw3] [ 57%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_getArea 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_getBoundingCircleOuterDiameter 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_preserveMassDuringThermalExpansion 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_thermallyExpands 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestSolidRectangle::test_volumeAfterClearCache 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSolidRectangle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestSquare::test_density 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_density 
armi/reactor/tests/test_components.py::TestSquare::test_densityConsistent 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_densityConsistent 
armi/reactor/tests/test_components.py::TestSquare::test_dimensionThermallyExpands 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestSquare::test_getArea 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_getArea 
armi/reactor/tests/test_components.py::TestSquare::test_getBoundingCircleOuterDiameter 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestSquare::test_getCircleInnerDiameter 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestSquare::test_negativeArea 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_negativeArea 
armi/reactor/tests/test_components.py::TestSquare::test_preserveMassDuringThermalExpansion 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestSquare::test_thermallyExpands 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestSquare::test_volumeAfterClearCache 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestSquare::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestCube::test_density 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_density 
armi/reactor/tests/test_components.py::TestCube::test_densityConsistent 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_densityConsistent 
armi/reactor/tests/test_components.py::TestCube::test_getVolume 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_getVolume 
armi/reactor/tests/test_components.py::TestCube::test_negativeVolume 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_negativeVolume 
armi/reactor/tests/test_components.py::TestCube::test_preserveMassDuringThermalExpansion 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestCube::test_thermallyExpands 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestCube::test_volumeAfterClearCache 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestCube::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestHexagon::test_density 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_density 
armi/reactor/tests/test_components.py::TestHexagon::test_densityConsistent 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHexagon::test_dimensionThermallyExpands 
[gw3] [ 58%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHexagon::test_getArea 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_getArea 
armi/reactor/tests/test_components.py::TestHexagon::test_getBoundingCircleOuterDiameter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestHexagon::test_getCircleInnerDiameter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHexagon::test_getPerimeter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_getPerimeter 
armi/reactor/tests/test_components.py::TestHexagon::test_preserveMassDuringThermalExpansion 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHexagon::test_thermallyExpands 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHexagon::test_volumeAfterClearCache 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexagon::test_volumeAfterClearCache 
[gw2] [ 59%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialCoordinatesLargeCore 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_density 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialCoordinatesSmallCore 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_density 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_densityConsistent 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_dimensionThermallyExpands 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_getArea 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_getArea 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_getBoundingCircleOuterDiameter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_getCircleInnerDiameter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_preserveMassDuringThermalExpansion 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_thermallyExpands 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHoledHexagon::test_volumeAfterClearCache 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHoledHexagon::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_density 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_density 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_densityConsistent 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_dimensionThermallyExpands 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_getArea 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_getArea 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_getCircleInnerDiameter 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_preserveMassDuringThermalExpansion 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_thermallyExpands 
[gw3] [ 59%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHexHoledCircle::test_volumeAfterClearCache 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHexHoledCircle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_density 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_density 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_densityConsistent 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_dimensionThermallyExpands 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_getArea 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_getArea 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_getBoundingCircleOuterDiameter 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_getCircleInnerDiameter 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_preserveMassDuringThermalExpansion 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_thermallyExpands 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHoledRectangle::test_volumeAfterClearCache 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledRectangle::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestHoledSquare::test_density 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_density 
armi/reactor/tests/test_components.py::TestHoledSquare::test_densityConsistent 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHoledSquare::test_dimensionThermallyExpands 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHoledSquare::test_getArea 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_getArea 
armi/reactor/tests/test_components.py::TestHoledSquare::test_getBoundingCircleOuterDiameter 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestHoledSquare::test_getCircleInnerDiameter 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHoledSquare::test_preserveMassDuringThermalExpansion 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHoledSquare::test_thermallyExpands 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHoledSquare::test_volumeAfterClearCache 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHoledSquare::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestHelix::test_density 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_density 
armi/reactor/tests/test_components.py::TestHelix::test_densityConsistent 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_densityConsistent 
armi/reactor/tests/test_components.py::TestHelix::test_dimensionThermallyExpands 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_dimensionThermallyExpands 
armi/reactor/tests/test_components.py::TestHelix::test_getArea 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_getArea 
armi/reactor/tests/test_components.py::TestHelix::test_getBoundingCircleOuterDiameter 
[gw3] [ 60%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestHelix::test_getCircleInnerDiameter 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_getCircleInnerDiameter 
armi/reactor/tests/test_components.py::TestHelix::test_preserveMassDuringThermalExpansion 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestHelix::test_thermallyExpands 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestHelix::test_validParameters 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_validParameters 
armi/reactor/tests/test_components.py::TestHelix::test_volumeAfterClearCache 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestHelix::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestSphere::test_density 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_density 
armi/reactor/tests/test_components.py::TestSphere::test_densityConsistent 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_densityConsistent 
armi/reactor/tests/test_components.py::TestSphere::test_getVolume 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_getVolume 
armi/reactor/tests/test_components.py::TestSphere::test_preserveMassDuringThermalExpansion 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestSphere::test_thermallyExpands 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestSphere::test_volumeAfterClearCache 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestSphere::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestRadialSegment::test_density 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_density 
armi/reactor/tests/test_components.py::TestRadialSegment::test_densityConsistent 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_densityConsistent 
armi/reactor/tests/test_components.py::TestRadialSegment::test_getBoundingCircleOuterDiameter 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestRadialSegment::test_getVolume 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_getVolume 
armi/reactor/tests/test_components.py::TestRadialSegment::test_preserveMassDuringThermalExpansion 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestRadialSegment::test_thermallyExpands 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestRadialSegment::test_volumeAfterClearCache 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestRadialSegment::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_density 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_density 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_densityConsistent 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_densityConsistent 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_getBoundingCircleOuterDiameter 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_getBoundingCircleOuterDiameter 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_getVolume 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_getVolume 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_preserveMassDuringThermalExpansion 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_preserveMassDuringThermalExpansion 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_thermallyExpands 
[gw3] [ 61%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_thermallyExpands 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_updateDims 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_updateDims 
armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_volumeAfterClearCache 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestDifferentialRadialSegment::test_volumeAfterClearCache 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassEnrichment 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassEnrichment 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_U 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_U 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_U235 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_U235 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_clear_ZR 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_clear_ZR 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_invalid 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_invalid 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_leave_same 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_leave_same 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_set_ZR 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_adjustMassFrac_set_ZR 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_finalizeLoadDBAdjustsTD 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_finalizeLoadDBAdjustsTD 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_getEnrichment 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_getEnrichment 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_setMassFrac 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_setMassFrac 
armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_setMassFracOnComponentMaterial 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestMaterialAdjustments::test_setMassFracOnComponentMaterial 
armi/reactor/tests/test_components.py::TestPinQuantities::test_getPinMgFluxes 
[gw3] [ 62%] PASSED armi/reactor/tests/test_components.py::TestPinQuantities::test_getPinMgFluxes 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_areChildernOfType 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_areChildernOfType 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_composite 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_composite 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_containsAtLeastOneChildOfType 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_containsAtLeastOneChildOfType 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_containsOnlyChildrenOfType 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_containsOnlyChildrenOfType 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_expandLFPs 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_expandLFPs 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getBoundingCirlceOuterDiameter 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getBoundingCirlceOuterDiameter 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getChildren 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getChildren 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getIntegratedMgFlux 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getIntegratedMgFlux 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getLumpedFissionProductsIfNecessaryNullCase 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getLumpedFissionProductsIfNecessaryNullCase 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getName 
[gw3] [ 62%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getName 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getParamNames 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getParamNames 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_getReactionRates 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_getReactionRates 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlags 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlags 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlagsNoTypeSpecified 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlagsNoTypeSpecified 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlagsSubstring 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_hasFlagsSubstring 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_iterComponents 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_iterComponents 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_nameContains 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_nameContains 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_nucSpec 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_nucSpec 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_requiresLumpedFissionProducts 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_requiresLumpedFissionProducts 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_setChildrenLumpedFissionProducts 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_setChildrenLumpedFissionProducts 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_sort 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_sort 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_syncParameters 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_syncParameters 
armi/reactor/tests/test_composites.py::TestCompositePattern::test_updateVolume 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositePattern::test_updateVolume 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_constituentReport 
[gw2] [ 63%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialCoordinatesSmallCore 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialFlagsLargeCore 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_constituentReport 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getChildrenIncludeMaterials 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getChildrenIncludeMaterials 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFPMass 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFPMass 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFissileMass 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFissileMass 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFuelMass 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getFuelMass 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getHMMass 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getHMMass 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getMaxParam 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getMaxParam 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getMinParam 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getMinParam 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_getNuclides 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_getNuclides 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_ordering 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_ordering 
armi/reactor/tests/test_composites.py::TestCompositeTree::test_summing 
[gw3] [ 63%] PASSED armi/reactor/tests/test_composites.py::TestCompositeTree::test_summing 
armi/reactor/tests/test_composites.py::TestFlagSerializer::test_flagConversion 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestFlagSerializer::test_flagConversion 
armi/reactor/tests/test_composites.py::TestFlagSerializer::test_flagSerialization 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestFlagSerializer::test_flagSerialization 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_containsHeavyMetal 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_containsHeavyMetal 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_copyParamsFrom 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_copyParamsFrom 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_copyParamsToChildren 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_copyParamsToChildren 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_dimensionReport 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_dimensionReport 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_getAtomicWeight 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_getAtomicWeight 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_getNumberDensities 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_getNumberDensities 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_getNumberDensitiesWithExpandedFissionProducts 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_getNumberDensitiesWithExpandedFissionProducts 
armi/reactor/tests/test_composites.py::TestMiscMethods::test_setMass 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestMiscMethods::test_setMass 
armi/reactor/tests/test_composites.py::TestGetReactionRateDict::test_getReactionRateDict 
[gw3] [ 64%] PASSED armi/reactor/tests/test_composites.py::TestGetReactionRateDict::test_getReactionRateDict 
armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_add 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_add 
armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_constructor 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_constructor 
armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_parentReactor 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_parentReactor 
armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_representation 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreStructure::test_representation 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_add 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_add 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_constructor 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_constructor 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_getAssembly 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_getAssembly 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_getNextLocation 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_getNextLocation 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_normalizeNames 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_normalizeNames 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_representation 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_representation 
armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_updateNumberOfColumns 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestSpentFuelPool::test_updateNumberOfColumns 
armi/reactor/tests/test_excoreStructures.py::TestExcoreCollection::test_addLikeAttribute 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreCollection::test_addLikeAttribute 
armi/reactor/tests/test_excoreStructures.py::TestExcoreCollection::test_addLikeDict 
[gw3] [ 64%] PASSED armi/reactor/tests/test_excoreStructures.py::TestExcoreCollection::test_addLikeDict 
armi/reactor/tests/test_flags.py::TestFlags::test_convertsStringsWithNonFlags 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_convertsStringsWithNonFlags 
armi/reactor/tests/test_flags.py::TestFlags::test_defaultIsFalse 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_defaultIsFalse 
armi/reactor/tests/test_flags.py::TestFlags::test_flagsDefinedWithNumbers 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_flagsDefinedWithNumbers 
armi/reactor/tests/test_flags.py::TestFlags::test_flagsToAndFromString 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_flagsToAndFromString 
armi/reactor/tests/test_flags.py::TestFlags::test_fromString 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_fromString 
armi/reactor/tests/test_flags.py::TestFlags::test_fromStringStrict 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_fromStringStrict 
armi/reactor/tests/test_flags.py::TestFlags::test_fromStringWithNumbers 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_fromStringWithNumbers 
armi/reactor/tests/test_flags.py::TestFlags::test_isPickleable 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_isPickleable 
armi/reactor/tests/test_flags.py::TestFlags::test_lookup 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_lookup 
armi/reactor/tests/test_flags.py::TestFlags::test_toStringAlphabetical 
[gw3] [ 65%] PASSED armi/reactor/tests/test_flags.py::TestFlags::test_toStringAlphabetical 
armi/reactor/tests/test_geometry.py::TestGeomType::test_fromStr 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestGeomType::test_fromStr 
armi/reactor/tests/test_geometry.py::TestGeomType::test_label 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestGeomType::test_label 
armi/reactor/tests/test_geometry.py::TestGeomType::test_str 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestGeomType::test_str 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_SymmetryFactor 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_SymmetryFactor 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_baseConstructor 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_baseConstructor 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_checkValidGeomSymmetryCombo 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_checkValidGeomSymmetryCombo 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_domainTypeNulls 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_domainTypeNulls 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_fromAny 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_fromAny 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_fromStr 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_fromStr 
armi/reactor/tests/test_geometry.py::TestSymmetryType::test_label 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSymmetryType::test_label 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_asciimap 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_asciimap 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_growToFullCore 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_growToFullCore 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readAsciimap 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readAsciimap 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readHexGeomXML 
[gw3] [ 65%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readHexGeomXML 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readReactor 
[gw3] [ 66%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_readReactor 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_yamlIO 
[gw1] [ 66%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_processMoveList 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_readMoves 
[gw3] [ 66%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInput::test_yamlIO 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInputTRZ::test_TRZyamlIO 
[gw3] [ 66%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInputTRZ::test_TRZyamlIO 
armi/reactor/tests/test_geometry.py::TestSystemLayoutInputTRZ::test_readTRZGeomXML 
[gw3] [ 66%] PASSED armi/reactor/tests/test_geometry.py::TestSystemLayoutInputTRZ::test_readTRZGeomXML 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_orientationVector 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_orientationVector 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinParametersUnmodified 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinParametersUnmodified 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinRotationCoordinates 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinRotationCoordinates 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinRotationLocations 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_pinRotationLocations 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_rotateBoundaryParameters 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_rotateBoundaryParameters 
armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_updateChildLocations 
[gw1] [ 66%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_readMoves 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_repeatShuffles 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::HexBlockRotateTests::test_updateChildLocations 
armi/reactor/tests/test_hexBlockRotate.py::EmptyBlockRotateTest::test_orientation 
[gw3] [ 66%] PASSED armi/reactor/tests/test_hexBlockRotate.py::EmptyBlockRotateTest::test_orientation 
armi/reactor/tests/test_parameters.py::ParameterTests::test_attemptingToSetParamWithoutSetterFails 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_attemptingToSetParamWithoutSetterFails 
armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateAttrbuteOnParameterCollectionSubclass 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateAttrbuteOnParameterCollectionSubclass 
armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateInstanceOf_NoDefault 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateInstanceOf_NoDefault 
armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateInstanceOf_Undefined 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotCreateInstanceOf_Undefined 
armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotDefineParameterWithSameName 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotDefineParameterWithSameName 
armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotDefineParameterWithSameNameForCollectionSubclass 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_cannotDefineParameterWithSameNameForCollectionSubclass 
armi/reactor/tests/test_parameters.py::ParameterTests::test_categories 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_categories 
armi/reactor/tests/test_parameters.py::ParameterTests::test_defaultLocation 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_defaultLocation 
armi/reactor/tests/test_parameters.py::ParameterTests::test_getWithoutDefaultRaisesParameterError 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_getWithoutDefaultRaisesParameterError 
armi/reactor/tests/test_parameters.py::ParameterTests::test_mutableDefaultsNotSupported 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_mutableDefaultsNotSupported 
armi/reactor/tests/test_parameters.py::ParameterTests::test_paramDefinitionsCompose 
[gw3] [ 66%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_paramDefinitionsCompose 
armi/reactor/tests/test_parameters.py::ParameterTests::test_paramPropertyDoesNotConflict 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_paramPropertyDoesNotConflict 
armi/reactor/tests/test_parameters.py::ParameterTests::test_paramPropertyDoesNotConflictWithNoneDefault 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_paramPropertyDoesNotConflictWithNoneDefault 
armi/reactor/tests/test_parameters.py::ParameterTests::test_parameterCollectionsHave__slots__ 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_parameterCollectionsHave__slots__ 
armi/reactor/tests/test_parameters.py::ParameterTests::test_serializer_pack_unpack 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_serializer_pack_unpack 
armi/reactor/tests/test_parameters.py::ParameterTests::test_setter 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_setter 
armi/reactor/tests/test_parameters.py::ParameterTests::test_setterGetterBasics 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_setterGetterBasics 
armi/reactor/tests/test_parameters.py::ParameterTests::test_writeSomeParamsToDB 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParameterTests::test_writeSomeParamsToDB 
armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_complicated 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_complicated 
armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_onCategory 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_onCategory 
armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_onLocation 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::ParamCollectionWhere::test_onLocation 
armi/reactor/tests/test_parameters.py::TestMakeParametersReadOnly::test_makeParametersReadOnly 
[gw3] [ 67%] PASSED armi/reactor/tests/test_parameters.py::TestMakeParametersReadOnly::test_makeParametersReadOnly 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_addMoreNodes 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialFlagsLargeCore 
armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialFlagsSmallCore 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialFlagsSmallCore 
armi/reactor/converters/tests/test_pinTypeBlockConverters.py::TestPinTypeConverters::test_adjustCladThicknessByID 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_pinTypeBlockConverters.py::TestPinTypeConverters::test_adjustCladThicknessByID 
armi/reactor/converters/tests/test_pinTypeBlockConverters.py::TestPinTypeConverters::test_adjustCladThicknessByOD 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_pinTypeBlockConverters.py::TestPinTypeConverters::test_adjustCladThicknessByOD 
armi/reactor/converters/tests/test_pinTypeBlockConverters.py::MassConservationTests::test_adjustSmearDensity 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_pinTypeBlockConverters.py::MassConservationTests::test_adjustSmearDensity 
armi/reactor/converters/tests/test_uniformMesh.py::TestConverterFactory::test_converterFactory 
[gw3] [ 67%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_addMoreNodes 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_addMultipleCores 
[gw3] [ 67%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_addMultipleCores 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_applyThermalExpansion_CoreConstruct 
[gw2] [ 67%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestConverterFactory::test_converterFactory 
armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_clearAssemblyState 
[gw1] [ 67%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_repeatShuffles 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferDifferentNumberStationaryBlocks 
[gw3] [ 67%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_applyThermalExpansion_CoreConstruct 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_buildManualZones 
[gw1] [ 67%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferDifferentNumberStationaryBlocks 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferIncompatibleHeightStationaryBlocks 
[gw3] [ 67%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_buildManualZones 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_buildManualZonesEmpty 
[gw1] [ 67%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferIncompatibleHeightStationaryBlocks 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferStationaryBlocks 
[gw2] [ 68%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_clearAssemblyState 
armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemUniformMeshParamMappingSameMesh 
[gw0] [ 68%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_calcMGFluence 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_getBlockInAssembly 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferStationaryBlocks 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferUnalignedLocationStationaryBlocks 
[gw3] [ 68%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_buildManualZonesEmpty 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_coreSfp 
[gw3] [ 68%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_coreSfp 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_countBlocksOfType 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_transferUnalignedLocationStationaryBlocks 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_width 
[gw2] [ 68%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemUniformMeshParamMappingSameMesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMesh 
[gw3] [ 68%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_countBlocksOfType 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_countFuelAxialBlocks 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_width 
armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelPlugin::test_settingsAreDiscovered 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelPlugin::test_settingsAreDiscovered 
armi/physics/fuelCycle/tests/test_hexAssemblyFuelMgmtUtils.py::TestHexAssemMgmtTools::test_buildConvergentRingSchedule 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_hexAssemblyFuelMgmtUtils.py::TestHexAssemMgmtTools::test_buildConvergentRingSchedule 
armi/physics/fuelCycle/tests/test_hexAssemblyFuelMgmtUtils.py::TestHexAssemMgmtTools::test_buildRingSchedule 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_hexAssemblyFuelMgmtUtils.py::TestHexAssemMgmtTools::test_buildRingSchedule 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_assemblyHasPinBurnups 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_assemblyHasPinBurnups 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_assemblyHasPinPower 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_assemblyHasPinPower 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlock 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlock 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlockNoBlocks 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlockNoBlocks 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlockNoBurnup 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupBlockNoBurnup 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocationFromComponents 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocationFromComponents 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocatorMismatchedData 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocatorMismatchedData 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocatorWithNoBurnup 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_maxBurnupLocatorWithNoBurnup 
armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_singleLocatorWithBurnup 
[gw1] [ 68%] PASSED armi/physics/fuelCycle/tests/test_utils.py::FuelCycleUtilsTests::test_singleLocatorWithBurnup 
armi/physics/fuelPerformance/tests/test_executers.py::TestFuelPerformanceOptions::test_fuelPerformanceOptions 
[gw1] [ 68%] PASSED armi/physics/fuelPerformance/tests/test_executers.py::TestFuelPerformanceOptions::test_fuelPerformanceOptions 
armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestPlugin::test_defineBlueprintsSections 
[gw1] [ 68%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestPlugin::test_defineBlueprintsSections 
armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestPlugin::test_exposeInterfaces 
[gw1] [ 68%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestPlugin::test_exposeInterfaces 
armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestFuelPerformancePlugin::test_defineBlueprintsSections 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestFuelPerformancePlugin::test_defineBlueprintsSections 
armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestFuelPerformancePlugin::test_exposeInterfaces 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformancePlugin.py::TestFuelPerformancePlugin::test_exposeInterfaces 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_applyFuelDisplacement 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_applyFuelDisplacement 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph0 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph0 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph1 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph1 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph2 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph2 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph3 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph3 
armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph4 
[gw1] [ 69%] PASSED armi/physics/fuelPerformance/tests/test_fuelPerformanceUtils.py::TestFuelPerformanceUtils::test_gasConductivityCorrection_morph4 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_fpApplication 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_fpApplication 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_getAllFissionProductNames 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_getAllFissionProductNames 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_loadGlobalLFPsFromFile 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelLumpedFissionProducts::test_loadGlobalLFPsFromFile 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2Library::test_nuclideFlags 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2Library::test_nuclideFlags 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2Library::test_nuclidesInModelFuel 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2Library::test_nuclidesInModelFuel 
armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2LibrarySlower::test_nuclidesInModelAllDepletableBlocks 
[gw3] [ 69%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_countFuelAxialBlocks 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_createAssemblyOfType 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_fissionProductModel.py::TestFissionProductModelExplicitMC2LibrarySlower::test_nuclidesInModelAllDepletableBlocks 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestFissionProductDefinitionFile::test_createLFPs 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestFissionProductDefinitionFile::test_createLFPs 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestFissionProductDefinitionFile::test_createReferenceLFPs 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestFissionProductDefinitionFile::test_createReferenceLFPs 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_gaseousYieldFraction 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_gaseousYieldFraction 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_getYield 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_getYield 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_isGas 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProduct::test_isGas 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_duplicate 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_duplicate 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getAllFissionProductNames 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getAllFissionProductNames 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getAllFissionProductNuclideBases 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getAllFissionProductNuclideBases 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getMassFrac 
[gw1] [ 69%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getMassFrac 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getNumberDensities 
[gw1] [ 70%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductCollection::test_getNumberDensities 
armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductsFromReferenceFile::test_fissionProductYields 
[gw1] [ 70%] PASSED armi/physics/neutronics/fissionProductModel/tests/test_lumpedFissionProduct.py::TestLumpedFissionProductsFromReferenceFile::test_fissionProductYields 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getReactor 
[gw0] [ 70%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_getBlockInAssembly 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyParameters 
[gw3] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_createAssemblyOfType 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_createAssemblyOfTypeExpandedCore 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getReactor 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getScalarEvolution 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMeshSubmesh 
[gw3] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_createAssemblyOfTypeExpandedCore 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_createFreshFeed 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getScalarEvolution 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getSetParameters 
[gw3] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_createFreshFeed 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_differentNuclideModels 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getSetParameters 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getSymmetryFactor 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMeshSubmesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_computeAverageAxialMesh 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getSymmetryFactor 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getTotalParam 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getTotalParam 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_growToFullCore 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_computeAverageAxialMesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_filterMesh 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_filterMesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_filteredTopAndBottom 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_filteredTopAndBottom 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_generateCommonMesh 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshGenerator::test_generateCommonMesh 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshComponents::test_blueprintCopy 
[gw0] [ 70%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyParameters 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyReport 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshComponents::test_blueprintCopy 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMesh::test_applyStateToOriginal 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_growToFullCore 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_ifMissingSpatialGrid 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMesh::test_applyStateToOriginal 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMesh::test_convertNumberDensities 
[gw3] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_differentNuclideModels 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_factorySortSetting 
[gw1] [ 70%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_ifMissingSpatialGrid 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_isPickleable 
[gw2] [ 70%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMesh::test_convertNumberDensities 
armi/reactor/converters/tests/test_uniformMesh.py::TestCalcReationRates::test_calcReactionRatesBlockList 
[gw2] [ 71%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestCalcReationRates::test_calcReactionRatesBlockList 
armi/reactor/converters/tests/test_uniformMesh.py::TestGammaUniformMesh::test_applyStateToOriginal 
[gw1] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_isPickleable 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_locations 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyReport 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_blockName 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_blockName 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_timestepFiltering 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_timestepFiltering 
armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_timestepFilteringWithGap 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTrackerNoModel::test_timestepFilteringWithGap 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_checkForDuplicateObjectsOnArmiModel 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_checkForDuplicateObjectsOnArmiModel 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_displayMemoryUsage 
[gw3] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_factorySortSetting 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAxialMeshPoints 
[gw2] [ 71%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestGammaUniformMesh::test_applyStateToOriginal 
armi/reactor/converters/tests/test_uniformMesh.py::TestGammaUniformMesh::test_convertNumberDensities 
[gw1] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_locations 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_nonUniformAssems 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_displayMemoryUsage 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_fullBreakdown 
[gw3] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAxialMeshPoints 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAxialMeshPoints_wSubmesh 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_fullBreakdown 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getCurrentMemoryUsage 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getCurrentMemoryUsage 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getReferrers 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getReferrers 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getTotalJobMemory 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_getTotalJobMemory 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printCurrentMemoryState 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printCurrentMemoryState 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printCurrentMemoryState_noSetting 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printCurrentMemoryState_noSetting 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printFullMemoryBreakdown 
[gw2] [ 71%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestGammaUniformMesh::test_convertNumberDensities 
armi/reactor/converters/tests/test_uniformMesh.py::TestParamConversion::test_setStateFromOverlaps 
[gw2] [ 71%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestParamConversion::test_setStateFromOverlaps 
armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshNonUniformAssemFlags::test_reactorConversion 
[gw3] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAxialMeshPoints_wSubmesh 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAziMeshPoints 
[gw1] [ 71%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_nonUniformAssems 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_normalizeNames 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_printFullMemoryBreakdown 
armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_profileMemoryUsageAction 
[gw0] [ 71%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::TestMemoryProfiler::test_profileMemoryUsageAction 
armi/bookkeeping/tests/test_memoryProfiler.py::KlassCounterTests::test_countHandlesRecursion 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::KlassCounterTests::test_countHandlesRecursion 
armi/bookkeeping/tests/test_memoryProfiler.py::KlassCounterTests::test_expandContainer 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_memoryProfiler.py::KlassCounterTests::test_expandContainer 
armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_activeateDefaultSnapshots_17cycles5BurnSteps 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_activeateDefaultSnapshots_17cycles5BurnSteps 
armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_activeateDefaultSnapshots_30cycles2BurnSteps 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_activeateDefaultSnapshots_30cycles2BurnSteps 
armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_interactCoupled 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_interactCoupled 
armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_interactEveryNode 
[gw0] [ 72%] PASSED armi/bookkeeping/tests/test_snapshot.py::TestSnapshotInterface::test_interactEveryNode 
armi/bookkeeping/visualization/tests/test_vis.py::TestVtkMesh::test_testVtkMesh 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_vis.py::TestVtkMesh::test_testVtkMesh 
armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_cartesianMesh 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_cartesianMesh 
armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_dumpReactorVtk 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_dumpReactorVtk 
armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_dumpReactorXdmf 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_dumpReactorXdmf 
armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_hexMesh 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_vis.py::TestVisDump::test_hexMesh 
armi/bookkeeping/visualization/tests/test_xdmf.py::TestXdmf::test_dedupTimes 
[gw0] [ 72%] PASSED armi/bookkeeping/visualization/tests/test_xdmf.py::TestXdmf::test_dedupTimes 
armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_bluePrintBlockModifier 
[gw0] [ 72%] PASSED armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_bluePrintBlockModifier 
armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_settingsModifier 
[gw2] [ 72%] PASSED armi/reactor/converters/tests/test_uniformMesh.py::TestUniformMeshNonUniformAssemFlags::test_reactorConversion 
armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_add 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_add 
armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_recursion 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_recursion 
armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_recursionPin 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestSpatialLocator::test_recursionPin 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_basicPosition 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_basicPosition 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_getitem 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_getitem 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_isAxialOnly 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_isAxialOnly 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_label 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_label 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_lookupFactory 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_lookupFactory 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_neighbors 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_neighbors 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_quasiReduce 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_quasiReduce 
armi/reactor/grids/tests/test_grids.py::TestGrid::test_ringPosFromIndicesIncorrect 
[gw2] [ 72%] PASSED armi/reactor/grids/tests/test_grids.py::TestGrid::test_ringPosFromIndicesIncorrect 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_adjustPitchCornersUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_adjustPitchCornersUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_adjustPitchFlatsUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_adjustPitchFlatsUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_badIndices 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_badIndices 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_buildLocations 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_buildLocations 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_cornersUpFlatsUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_cornersUpFlatsUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getAllIndices 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getAllIndices 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getCoordinatesCornersUp 
[gw3] [ 73%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllAziMeshPoints 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllMeshPoints 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getCoordinatesCornersUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getCoordinatesFlatsUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getCoordinatesFlatsUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getIndexBounds 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getIndexBounds 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesCornersUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesCornersUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesFlatsUp 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesFlatsUp 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesHex 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getLocalCoordinatesHex 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getSymmetricIdenticalsThird 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_getSymmetricIdenticalsThird 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_inconsistentRotationGrids 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_inconsistentRotationGrids 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_indicesAndEdgeFromRingAndPos 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_indicesAndEdgeFromRingAndPos 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_isInFirstThird 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_isInFirstThird 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_is_pickleable 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_is_pickleable 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_label 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_label 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_neighbors 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_neighbors 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_overlapsWhichSymmetryLine 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_overlapsWhichSymmetryLine 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_ringPosFromIndices 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_ringPosFromIndices 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndexGridAssignment 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndexGridAssignment 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndexRoughEqualPitch 
[gw2] [ 73%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndexRoughEqualPitch 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndices 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_rotatedIndices 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_thirdAndFullSymmetry 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_thirdAndFullSymmetry 
armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_triangleCoords 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestHexGrid::test_triangleCoords 
armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_base 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_base 
armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_getIndexBounds 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_getIndexBounds 
armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_positions 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_positions 
armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_positionsMixedDefinition 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestBoundsDefinedGrid::test_positionsMixedDefinition 
armi/reactor/grids/tests/test_grids.py::TestThetaRZGrid::test_positions 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestThetaRZGrid::test_positions 
armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_ringPosNoSplit 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_ringPosNoSplit 
armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_ringPosSplit 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_ringPosSplit 
armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_symmetry 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestCartesianGrid::test_symmetry 
armi/reactor/grids/tests/test_grids.py::TestAxialGrid::test_getLocations 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestAxialGrid::test_getLocations 
armi/reactor/grids/tests/test_grids.py::TestAxialGrid::test_simpleBounds 
[gw2] [ 74%] PASSED armi/reactor/grids/tests/test_grids.py::TestAxialGrid::test_simpleBounds 
armi/reactor/tests/test_assemblies.py::MaterialInAssembly_TestCase::test_UThZrMaterial 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::MaterialInAssembly_TestCase::test_UThZrMaterial 
armi/reactor/tests/test_assemblies.py::MaterialInAssembly_TestCase::test_sortNoLocator 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::MaterialInAssembly_TestCase::test_sortNoLocator 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_add 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_add 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_adjustResolution 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_adjustResolution 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_append 
[gw1] [ 74%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_normalizeNames 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_pinCoordsAllBlocks 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_append 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_assem_block_types 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_assem_block_types 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_assem_hex_type 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_assem_hex_type 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_averagePlenumTemperature 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_averagePlenumTemperature 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calcAvgParam 
[gw2] [ 74%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calcAvgParam 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calcTotalParam 
[gw0] [ 74%] PASSED armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_settingsModifier 
armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_smearDensityFail 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calcTotalParam 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calculateZCoords 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_calculateZCoords 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_carestianCoordinates 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_carestianCoordinates 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_countBlocksOfType 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_countBlocksOfType 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_duplicate 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_inputModifiers.py::TestsuiteBuilderIntegrations::test_smearDensityFail 
armi/cases/inputModifiers/tests/test_inputModifiers.py::TestSettingsModifiers::test_NeutronicConvergenceModifier 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_inputModifiers.py::TestSettingsModifiers::test_NeutronicConvergenceModifier 
armi/cases/inputModifiers/tests/test_inputModifiers.py::TestFullCoreModifier::test_fullCoreConversion 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_inputModifiers.py::TestFullCoreModifier::test_fullCoreConversion 
armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_AdjustSmearDensity 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_AdjustSmearDensity 
armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_CladThickenessByIDModifier 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_CladThickenessByIDModifier 
armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_CladThickenessByODModifier 
[gw0] [ 75%] PASSED armi/cases/inputModifiers/tests/test_pinTypeInputModifiers.py::TestBlueprintModifiers::test_CladThickenessByODModifier 
armi/cases/tests/test_cases.py::TestArmiCase::test_clone 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_duplicate 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_extend 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_extend 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getAge 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getAge 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getArea 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getArea 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getAxialMesh 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getAxialMesh 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBIndexFromZIndex 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBIndexFromZIndex 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlockData 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlockData 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocks 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocks 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocksAndZ 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocksAndZ 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocksBetweenElevations 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getBlocksBetweenElevations 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getDim 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getDim 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getDominantMaterial 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getDominantMaterial 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getElevationBoundariesByBlockType 
[gw0] [ 75%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_clone 
armi/cases/tests/test_cases.py::TestArmiCase::test_endCoverage 
[gw2] [ 75%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getElevationBoundariesByBlockType 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getElevationsMatchingParamValue 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getElevationsMatchingParamValue 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFirstBlock 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFirstBlock 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFirstBlockByType 
[gw0] [ 76%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_endCoverage 
armi/cases/tests/test_cases.py::TestArmiCase::test_endProfiling 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFirstBlockByType 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFissileMass 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getFissileMass 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getHeight 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getHeight 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getLocation 
[gw0] [ 76%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_endProfiling 
armi/cases/tests/test_cases.py::TestArmiCase::test_getCoverageRcFile 
[gw0] [ 76%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_getCoverageRcFile 
armi/cases/tests/test_cases.py::TestArmiCase::test_independentVariables 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getLocation 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getMass 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getMass 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getMaxParam 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getMaxParam 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getName 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getName 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getNum 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getNum 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getParamValuesAtZ 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getParamValuesAtZ 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getReactiveHeight 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getReactiveHeight 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getTotalHeight 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getTotalHeight 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getVolume 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_getVolume 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_hasContinuousCoolantChannel 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_hasContinuousCoolantChannel 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_hasFlags 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_hasFlags 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_isOnWhichSymmetryLine 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_isOnWhichSymmetryLine 
armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_iter 
[gw2] [ 76%] PASSED armi/reactor/tests/test_assemblies.py::Assembly_TestCase::test_iter 
armi/settings/tests/test_inspectors.py::TestInspector::test_createQueryRevertBadPathToDefault 
[gw2] [ 76%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_createQueryRevertBadPathToDefault 
armi/settings/tests/test_inspectors.py::TestInspector::test_nonCorrectiveQuery 
[gw2] [ 76%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_nonCorrectiveQuery 
armi/settings/tests/test_inspectors.py::TestInspector::test_overwriteSettingsCorrectiveQuery 
[gw2] [ 76%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_overwriteSettingsCorrectiveQuery 
armi/settings/tests/test_inspectors.py::TestInspector::test_query 
[gw2] [ 77%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_query 
armi/settings/tests/test_settings.py::TestSettings::test_metaData 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings::test_metaData 
armi/settings/tests/test_settings.py::TestSettings::test_updateEnvironmentSettingsFrom 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings::test_updateEnvironmentSettingsFrom 
armi/settings/tests/test_settings.py::TestAddingOptions::test_addingOptions 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestAddingOptions::test_addingOptions 
armi/settings/tests/test_settings.py::TestSettings2::test_copySetting 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_copySetting 
armi/settings/tests/test_settings.py::TestSettings2::test_copySettingNotDefault 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_copySettingNotDefault 
armi/settings/tests/test_settings.py::TestSettings2::test_csWorks 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_csWorks 
armi/settings/tests/test_settings.py::TestSettings2::test_default 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_default 
armi/settings/tests/test_settings.py::TestSettings2::test_empty 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_empty 
armi/settings/tests/test_settings.py::TestSettings2::test_getFailures 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_getFailures 
armi/settings/tests/test_settings.py::TestSettings2::test_getSettingsSetByUser 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_getSettingsSetByUser 
armi/settings/tests/test_settings.py::TestSettings2::test_listCoercion 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_listCoercion 
armi/settings/tests/test_settings.py::TestSettings2::test_listsMutable 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_listsMutable 
armi/settings/tests/test_settings.py::TestSettings2::test_modified 
[gw0] [ 77%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_independentVariables 
armi/cases/tests/test_cases.py::TestArmiCase::test_run 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_modified 
armi/settings/tests/test_settings.py::TestSettings2::test_pluginSettings 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_pluginSettings 
armi/settings/tests/test_settings.py::TestSettings2::test_pluginValidatorsAreDiscovered 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_pluginValidatorsAreDiscovered 
armi/settings/tests/test_settings.py::TestSettings2::test_schemaChecksType 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_schemaChecksType 
armi/settings/tests/test_settings.py::TestSettings2::test_setModuleVerbosities 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_setModuleVerbosities 
armi/settings/tests/test_settings.py::TestSettings2::test_settingIsOkayToGrab 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_settingIsOkayToGrab 
armi/settings/tests/test_settings.py::TestSettings2::test_typeDetection 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettings2::test_typeDetection 
armi/settings/tests/test_settings.py::TestSettingsUtils::test_prompt 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettingsUtils::test_prompt 
armi/settings/tests/test_settings.py::TestSettingsUtils::test_recursiveScan 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestSettingsUtils::test_recursiveScan 
armi/settings/tests/test_settings.py::TestFlagListSetting::test_flagListSetting 
[gw2] [ 77%] PASSED armi/settings/tests/test_settings.py::TestFlagListSetting::test_flagListSetting 
armi/settings/tests/test_settings.py::TestFlagListSetting::test_invalidFlagListTypeError 
[gw2] [ 78%] PASSED armi/settings/tests/test_settings.py::TestFlagListSetting::test_invalidFlagListTypeError 
armi/settings/tests/test_settings.py::TestSettingsValidationUtils::test_validateVersion 
[gw2] [ 78%] PASSED armi/settings/tests/test_settings.py::TestSettingsValidationUtils::test_validateVersion 
armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_invalidFile 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_invalidFile 
armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_loadFromYamlFailsOnBadNames 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_loadFromYamlFailsOnBadNames 
armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_settingsObjSetting 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsFailureTests::test_settingsObjSetting 
armi/settings/tests/test_settingsIO.py::SettingsReaderTests::test_basicSettingsReader 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsReaderTests::test_basicSettingsReader 
armi/settings/tests/test_settingsIO.py::SettingsReaderTests::test_readFromFile 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsReaderTests::test_readFromFile 
armi/settings/tests/test_settingsIO.py::SettingsRenameTests::test_collidingRenames 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsRenameTests::test_collidingRenames 
armi/settings/tests/test_settingsIO.py::SettingsRenameTests::test_rename 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsRenameTests::test_rename 
armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_errorSettingsWriter 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_errorSettingsWriter 
armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeFull 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeFull 
armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeMedium 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeMedium 
armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeShort 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeShort 
armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeYaml 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingsWriterTests::test_writeYaml 
armi/settings/tests/test_settingsIO.py::SettingArgsTests::test_cannotLoadSettingsAfterParsingCommandLineSetting 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingArgsTests::test_cannotLoadSettingsAfterParsingCommandLineSetting 
armi/settings/tests/test_settingsIO.py::SettingArgsTests::test_commandLineSetting 
[gw2] [ 78%] PASSED armi/settings/tests/test_settingsIO.py::SettingArgsTests::test_commandLineSetting 
armi/tests/test_apps.py::TestApps::test_disableFutureConfigures 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_disableFutureConfigures 
armi/tests/test_apps.py::TestApps::test_getParamRenames 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_getParamRenames 
armi/tests/test_apps.py::TestApps::test_getParamRenamesInvalids 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_getParamRenamesInvalids 
armi/tests/test_apps.py::TestApps::test_getSettings 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_getSettings 
armi/tests/test_apps.py::TestApps::test_isStableReleaseVersion 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_isStableReleaseVersion 
armi/tests/test_apps.py::TestApps::test_registerPluginFlags 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_registerPluginFlags 
armi/tests/test_apps.py::TestApps::test_splashText 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_splashText 
armi/tests/test_apps.py::TestApps::test_splashTextDifferentApp 
[gw2] [ 78%] PASSED armi/tests/test_apps.py::TestApps::test_splashTextDifferentApp 
armi/tests/test_apps.py::TestApps::test_version 
[gw2] [ 79%] PASSED armi/tests/test_apps.py::TestApps::test_version 
armi/tests/test_apps.py::TestArmiHighLevel::test_getDefaultPluginManager 
[gw2] [ 79%] PASSED armi/tests/test_apps.py::TestArmiHighLevel::test_getDefaultPluginManager 
armi/tests/test_apps.py::TestArmiHighLevel::test_main 
[gw2] [ 79%] PASSED armi/tests/test_apps.py::TestArmiHighLevel::test_main 
armi/tests/test_apps.py::TestArmiHighLevel::test_overConfigured 
[gw2] [ 79%] PASSED armi/tests/test_apps.py::TestArmiHighLevel::test_overConfigured 
armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesFail 
[gw2] [ 79%] PASSED armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesFail 
armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesSucceedFalseNegative 
[gw2] [ 79%] PASSED armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesSucceedFalseNegative 
armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesSucess 
[gw2] [ 79%] PASSED armi/tests/test_armiTestHelper.py::TestArmiTestHelper::test_compareFilesSucess 
armi/tests/test_cartesian.py::CartesianReactorTests::test_custom 
[gw3] [ 79%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllMeshPoints 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllRadMeshPoints 
[gw1] [ 79%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_pinCoordsAllBlocks 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRing 
[gw0] [ 79%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_run 
armi/cases/tests/test_cases.py::TestArmiCase::test_setUpTaskDependence 
[gw0] [ 79%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_setUpTaskDependence 
armi/cases/tests/test_cases.py::TestArmiCase::test_startCoverage 
[gw0] [ 79%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_startCoverage 
armi/cases/tests/test_cases.py::TestArmiCase::test_startProfiling 
[gw0] [ 79%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_startProfiling 
armi/cases/tests/test_cases.py::TestArmiCase::test_summarizeDesign 
[gw3] [ 79%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAllRadMeshPoints 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAxialMeshIndexOf 
[gw2] [ 79%] PASSED armi/tests/test_cartesian.py::CartesianReactorTests::test_custom 
armi/tests/test_context.py::TestContextSerial::test_nonNoneData 
[gw2] [ 79%] PASSED armi/tests/test_context.py::TestContextSerial::test_nonNoneData 
armi/tests/test_context.py::TestContextSerial::test_rank 
[gw2] [ 79%] PASSED armi/tests/test_context.py::TestContextSerial::test_rank 
armi/tests/test_interfaces.py::TestCodeInterface::test_distributable 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_distributable 
armi/tests/test_interfaces.py::TestCodeInterface::test_duplicate 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_duplicate 
armi/tests/test_interfaces.py::TestCodeInterface::test_enabled 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_enabled 
armi/tests/test_interfaces.py::TestCodeInterface::test_isRequestedDetailPoint 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_isRequestedDetailPoint 
armi/tests/test_interfaces.py::TestCodeInterface::test_nameContains 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_nameContains 
armi/tests/test_interfaces.py::TestCodeInterface::test_preDistributeState 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestCodeInterface::test_preDistributeState 
armi/tests/test_interfaces.py::TestTightCoupler::test_couplerActive 
[gw2] [ 79%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_couplerActive 
armi/tests/test_interfaces.py::TestTightCoupler::test_getListDimension 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_getListDimension 
armi/tests/test_interfaces.py::TestTightCoupler::test_isConverged 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_isConverged 
armi/tests/test_interfaces.py::TestTightCoupler::test_isConvergedRuntimeError 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_isConvergedRuntimeError 
armi/tests/test_interfaces.py::TestTightCoupler::test_isConvergedValueError 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_isConvergedValueError 
armi/tests/test_interfaces.py::TestTightCoupler::test_storePreviousIterationValue 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_storePreviousIterationValue 
armi/tests/test_interfaces.py::TestTightCoupler::test_storePreviousIterationValueException 
[gw2] [ 80%] PASSED armi/tests/test_interfaces.py::TestTightCoupler::test_storePreviousIterationValueException 
armi/tests/test_lwrInputs.py::C5G7ReactorTests::test_loadC5G7 
[gw2] [ 80%] PASSED armi/tests/test_lwrInputs.py::C5G7ReactorTests::test_loadC5G7 
armi/tests/test_mpiActions.py::MpiIterTests::test_diagnosePickleErrorTestReactor 
[gw1] [ 80%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRing 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRingByCount 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_diagnosePickleErrorTestReactor 
armi/tests/test_mpiActions.py::MpiIterTests::test_excessProcesses 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_excessProcesses 
armi/tests/test_mpiActions.py::MpiIterTests::test_mpiIter 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_mpiIter 
armi/tests/test_mpiActions.py::MpiIterTests::test_parallel 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_parallel 
armi/tests/test_mpiActions.py::MpiIterTests::test_perfectBalancing 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_perfectBalancing 
armi/tests/test_mpiActions.py::MpiIterTests::test_runActionsDistributeStateAction 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_runActionsDistributeStateAction 
armi/tests/test_mpiActions.py::MpiIterTests::test_runActionsDistributionAction 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_runActionsDistributionAction 
armi/tests/test_mpiActions.py::MpiIterTests::test_serialGather 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_serialGather 
armi/tests/test_mpiActions.py::MpiIterTests::test_typicalBalancing 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::MpiIterTests::test_typicalBalancing 
armi/tests/test_mpiActions.py::QueueActionsTests::test_disableForExclusiveTasks 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::QueueActionsTests::test_disableForExclusiveTasks 
armi/tests/test_mpiActions.py::QueueActionsTests::test_makeQueue 
[gw2] [ 80%] PASSED armi/tests/test_mpiActions.py::QueueActionsTests::test_makeQueue 
armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_basicOperatorMPI 
[gw2] [ 80%] SKIPPED armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_basicOperatorMPI 
armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_finalizeInteract 
[gw2] [ 80%] SKIPPED armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_finalizeInteract 
armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_primaryCritical 
[gw2] [ 80%] SKIPPED armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_primaryCritical 
armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_primaryException 
[gw2] [ 80%] SKIPPED armi/tests/test_mpiFeatures.py::MpiOperatorTests::test_primaryException 
armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_compileResults 
[gw2] [ 80%] SKIPPED armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_compileResults 
armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeInterfaces 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeInterfaces 
armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeReactor 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeReactor 
armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeSettings 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeSettings 
armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeState 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::MpiDistributeStateTests::test_distributeState 
armi/tests/test_mpiFeatures.py::MpiPathToolsTests::test_cleanPathMpi 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::MpiPathToolsTests::test_cleanPathMpi 
armi/tests/test_mpiFeatures.py::TestContextMpi::test_nonNoneData 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::TestContextMpi::test_nonNoneData 
armi/tests/test_mpiFeatures.py::TestContextMpi::test_rank 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiFeatures.py::TestContextMpi::test_rank 
armi/tests/test_mpiParameters.py::SynchronizationTests::test_conflictsMaintainWithStateRetainer 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiParameters.py::SynchronizationTests::test_conflictsMaintainWithStateRetainer 
armi/tests/test_mpiParameters.py::SynchronizationTests::test_noConflicts 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiParameters.py::SynchronizationTests::test_noConflicts 
armi/tests/test_mpiParameters.py::SynchronizationTests::test_withConflicts 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiParameters.py::SynchronizationTests::test_withConflicts 
armi/tests/test_mpiParameters.py::SynchronizationTests::test_withConflictsButSameValue 
[gw2] [ 81%] SKIPPED armi/tests/test_mpiParameters.py::SynchronizationTests::test_withConflictsButSameValue 
armi/tests/test_notebooks.py::NotebookTests::test_runDataModel 
[gw3] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findAxialMeshIndexOf 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_findNeighbors 
[gw1] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRingByCount 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRingHex 
[gw1] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembliesInRingHex 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembly 
[gw1] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssembly 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssemblyNoSfp 
[gw3] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_findNeighbors 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_genAssembliesAddedThisCycle 
[gw1] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_removeAssemblyNoSfp 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_restoreReactor 
[gw3] [ 81%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_genAssembliesAddedThisCycle 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_genBlocksByLocName 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestArmiCase::test_summarizeDesign 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_checkInputs 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_checkInputs 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_clone 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_clone 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependenciesWithObscurePaths 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependenciesWithObscurePaths 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependencyFromDBName 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependencyFromDBName 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependencyFromExplictRepeatShuffles 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_dependencyFromExplictRepeatShuffles 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_explicitDependency 
[gw0] [ 81%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_explicitDependency 
armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_titleSetterGetter 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteDependencies::test_titleSetterGetter 
armi/cases/tests/test_cases.py::TestCaseSuiteComparison::test_compareNoDiffs 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCaseSuiteComparison::test_compareNoDiffs 
armi/cases/tests/test_cases.py::TestExtraInputWriting::test_writeInput 
[gw3] [ 82%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_genBlocksByLocName 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_geomType 
[gw3] [ 82%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_geomType 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAllXsSuffixes 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestExtraInputWriting::test_writeInput 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInputsHelper 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInputsHelper 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_absPath 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_absPath 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_multipleFiles 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_multipleFiles 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_nonFilePath 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_nonFilePath 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_relPath 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_relPath 
armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_singleFile 
[gw0] [ 82%] PASSED armi/cases/tests/test_cases.py::TestCopyInterfaceInputs::test_copyInterfaceInputs_singleFile 
armi/reactor/tests/test_rz_reactors.py::TestRZTReactorModern::test_loadRZT_reactor 
[gw0] [ 82%] PASSED armi/reactor/tests/test_rz_reactors.py::TestRZTReactorModern::test_loadRZT_reactor 
armi/reactor/tests/test_zones.py::TestZone::test_addItem 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_addItem 
armi/reactor/tests/test_zones.py::TestZone::test_addItems 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_addItems 
armi/reactor/tests/test_zones.py::TestZone::test_addLoc 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_addLoc 
armi/reactor/tests/test_zones.py::TestZone::test_addLocs 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_addLocs 
armi/reactor/tests/test_zones.py::TestZone::test_blocks 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_blocks 
armi/reactor/tests/test_zones.py::TestZone::test_iteration 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_iteration 
armi/reactor/tests/test_zones.py::TestZone::test_removeItem 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_removeItem 
armi/reactor/tests/test_zones.py::TestZone::test_removeItems 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_removeItems 
armi/reactor/tests/test_zones.py::TestZone::test_removeLoc 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_removeLoc 
armi/reactor/tests/test_zones.py::TestZone::test_removeLocs 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_removeLocs 
armi/reactor/tests/test_zones.py::TestZone::test_repr 
[gw0] [ 82%] PASSED armi/reactor/tests/test_zones.py::TestZone::test_repr 
armi/reactor/tests/test_zones.py::TestZones::test_dictionaryInterface 
[gw1] [ 82%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_restoreReactor 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_saveAllFlux 
[gw2] [ 83%] PASSED armi/tests/test_notebooks.py::NotebookTests::test_runDataModel 
armi/tests/test_notebooks.py::NotebookTests::test_runParamSweep 
[gw3] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAllXsSuffixes 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesInCircularRing 
[gw1] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_saveAllFlux 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_setB10VolOnCreation 
[gw3] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesInCircularRing 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesInHexRing 
[gw1] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_setB10VolOnCreation 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_setPitchUniform 
[gw3] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesInHexRing 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesOnSymmetryLine 
[gw0] [ 83%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_dictionaryInterface 
armi/reactor/tests/test_zones.py::TestZones::test_findZoneItIsIn 
[gw1] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_setPitchUniform 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_setPowerIfNecessary 
[gw3] [ 83%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssembliesOnSymmetryLine 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyPitch 
[gw2] [ 83%] PASSED armi/tests/test_notebooks.py::NotebookTests::test_runParamSweep 
armi/tests/test_plugins.py::TestPluginRegistration::test_axialExpansionHook 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginRegistration::test_axialExpansionHook 
armi/tests/test_plugins.py::TestPluginRegistration::test_beforeReactorConstructionHook 
[gw0] [ 83%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_findZoneItIsIn 
armi/reactor/tests/test_zones.py::TestZones::test_getAllLocations 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginRegistration::test_beforeReactorConstructionHook 
armi/tests/test_plugins.py::TestPluginRegistration::test_defineFlags 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginRegistration::test_defineFlags 
armi/tests/test_plugins.py::TestPluginBasics::test_defineParameters 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginBasics::test_defineParameters 
armi/tests/test_plugins.py::TestPluginBasics::test_exposeInterfaces 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginBasics::test_exposeInterfaces 
armi/tests/test_plugins.py::TestPluginBasics::test_pluginsExposeInterfaces 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPluginBasics::test_pluginsExposeInterfaces 
armi/tests/test_plugins.py::TestPlugin::test_defineBlueprintsSections 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPlugin::test_defineBlueprintsSections 
armi/tests/test_plugins.py::TestPlugin::test_exposeInterfaces 
[gw2] [ 83%] PASSED armi/tests/test_plugins.py::TestPlugin::test_exposeInterfaces 
armi/tests/test_runLog.py::TestRunLog::test_callingStartLogMultipleTimes 
[gw2] [ 83%] PASSED armi/tests/test_runLog.py::TestRunLog::test_callingStartLogMultipleTimes 
armi/tests/test_runLog.py::TestRunLog::test_closeLogging 
[gw2] [ 83%] PASSED armi/tests/test_runLog.py::TestRunLog::test_closeLogging 
armi/tests/test_runLog.py::TestRunLog::test_concatenateLogs 
[gw2] [ 83%] PASSED armi/tests/test_runLog.py::TestRunLog::test_concatenateLogs 
armi/tests/test_runLog.py::TestRunLog::test_createLogDir 
[gw2] [ 83%] PASSED armi/tests/test_runLog.py::TestRunLog::test_createLogDir 
armi/tests/test_runLog.py::TestRunLog::test_getWhiteSpace 
[gw2] [ 83%] PASSED armi/tests/test_runLog.py::TestRunLog::test_getWhiteSpace 
armi/tests/test_runLog.py::TestRunLog::test_invalidSetVerbosityByString 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_invalidSetVerbosityByString 
armi/tests/test_runLog.py::TestRunLog::test_parentRunLogging 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_parentRunLogging 
armi/tests/test_runLog.py::TestRunLog::test_setVerbosity 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_setVerbosity 
armi/tests/test_runLog.py::TestRunLog::test_setVerbosityBeforeStartLog 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_setVerbosityBeforeStartLog 
armi/tests/test_runLog.py::TestRunLog::test_setVerbosityFromInteger 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_setVerbosityFromInteger 
armi/tests/test_runLog.py::TestRunLog::test_setVerbosityFromString 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_setVerbosityFromString 
armi/tests/test_runLog.py::TestRunLog::test_verbosityOutOfRange 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_verbosityOutOfRange 
armi/tests/test_runLog.py::TestRunLog::test_warningReport 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_warningReport 
armi/tests/test_runLog.py::TestRunLog::test_warningReportInvalid 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLog::test_warningReportInvalid 
armi/tests/test_runLog.py::TestRunLogger::test_allowStopDuplicates 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLogger::test_allowStopDuplicates 
armi/tests/test_runLog.py::TestRunLogger::test_getDuplicatesFilter 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLogger::test_getDuplicatesFilter 
armi/tests/test_runLog.py::TestRunLogger::test_write 
[gw2] [ 84%] PASSED armi/tests/test_runLog.py::TestRunLogger::test_write 
armi/tests/test_tests.py::TestCompareFiles::test_compareFileLine 
[gw2] [ 84%] PASSED armi/tests/test_tests.py::TestCompareFiles::test_compareFileLine 
armi/tests/test_user_plugins.py::TestUserPlugins::test_registerRepeatedUserPlugins 
[gw2] [ 84%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_registerRepeatedUserPlugins 
armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_method_definitions 
[gw2] [ 84%] PASSED armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_method_definitions 
armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_property_access 
[gw2] [ 84%] PASSED armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_property_access 
armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_important_decorator 
[gw2] [ 84%] PASSED armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_important_decorator 
armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_info_decorator 
[gw2] [ 84%] PASSED armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_info_decorator 
armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_warn_decorator 
[gw2] [ 84%] PASSED armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_warn_decorator 
armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_warn_when_root_decorator 
[gw2] [ 84%] PASSED armi/utils/tests/test_custom_exceptions.py::CustomExceptionTests::test_warn_when_root_decorator 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_applyIsotopicsMix 
[gw2] [ 84%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_applyIsotopicsMix 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_calculateNumberDensity 
[gw2] [ 84%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_calculateNumberDensity 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElement 
[gw2] [ 84%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElement 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElementalMassFracsToNuclides 
[gw2] [ 84%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElementalMassFracsToNuclides 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElementalZeroMassFrac 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_expandElementalZeroMassFrac 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_formatMaterialCard 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_formatMaterialCard 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_getChemicals 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_getChemicals 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_getMassFractions 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_getMassFractions 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_getMassInGrams 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_getMassInGrams 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_getNDensFromMasses 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_getNDensFromMasses 
armi/utils/tests/test_densityTools.py::TestDensityTools::test_normalizeNuclideList 
[gw2] [ 85%] PASSED armi/utils/tests/test_densityTools.py::TestDensityTools::test_normalizeNuclideList 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_change_to_nonexisting_fails 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_change_to_nonexisting_fails 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_change_to_nonexisting_works_forced 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_change_to_nonexisting_works_forced 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_exception 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_exception 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_exception_disabled 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_exception_disabled 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_file_retrieval 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_file_retrieval 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_file_retrieval_missing_file 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_file_retrieval_missing_file 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_mpiAction 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_mpiAction 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_mpiActionFailsOnNonexistentPath 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_mpiActionFailsOnNonexistentPath 
armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_temporary_cleans 
[gw2] [ 85%] PASSED armi/utils/tests/test_directoryChangers.py::TestDirectoryChangers::test_temporary_cleans 
armi/utils/tests/test_directoryChangersMpi.py::TestMPI::test_MpiDirectoryChanger 
[gw2] [ 85%] SKIPPED armi/utils/tests/test_directoryChangersMpi.py::TestMPI::test_MpiDirectoryChanger 
armi/utils/tests/test_flags.py::TestFlag::test_auto 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_auto 
armi/utils/tests/test_flags.py::TestFlag::test_bitwise 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_bitwise 
armi/utils/tests/test_flags.py::TestFlag::test_bool 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_bool 
armi/utils/tests/test_flags.py::TestFlag::test_collision_creation 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_collision_creation 
armi/utils/tests/test_flags.py::TestFlag::test_collision_extension 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_collision_extension 
armi/utils/tests/test_flags.py::TestFlag::test_extend 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_extend 
armi/utils/tests/test_flags.py::TestFlag::test_getitem 
[gw2] [ 85%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_getitem 
armi/utils/tests/test_flags.py::TestFlag::test_hashable 
[gw2] [ 86%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_hashable 
armi/utils/tests/test_flags.py::TestFlag::test_inclusion 
[gw2] [ 86%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_inclusion 
armi/utils/tests/test_flags.py::TestFlag::test_iteration 
[gw2] [ 86%] PASSED armi/utils/tests/test_flags.py::TestFlag::test_iteration 
armi/utils/tests/test_hexagon.py::TestHexagon::test_hexagon_area 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_hexagon_area 
armi/utils/tests/test_hexagon.py::TestHexagon::test_indexWithNoRotation 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_indexWithNoRotation 
armi/utils/tests/test_hexagon.py::TestHexagon::test_numPositionsInRing 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_numPositionsInRing 
armi/utils/tests/test_hexagon.py::TestHexagon::test_positionsUpToRing 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_positionsUpToRing 
armi/utils/tests/test_hexagon.py::TestHexagon::test_rotateFuzzy 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_rotateFuzzy 
armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellCenter 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellCenter 
armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellIndexErrors 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellIndexErrors 
armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellOrientationErrors 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedCellOrientationErrors 
armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedFirstRing 
[gw2] [ 86%] PASSED armi/utils/tests/test_hexagon.py::TestHexagon::test_rotatedFirstRing 
armi/utils/tests/test_iterables.py::TestIterables::test_addingSequences 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_addingSequences 
armi/utils/tests/test_iterables.py::TestIterables::test_appendSequence 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_appendSequence 
armi/utils/tests/test_iterables.py::TestIterables::test_arrayPivot 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_arrayPivot 
armi/utils/tests/test_iterables.py::TestIterables::test_chunk 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_chunk 
armi/utils/tests/test_iterables.py::TestIterables::test_copySequence 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_copySequence 
armi/utils/tests/test_iterables.py::TestIterables::test_extendSequence 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_extendSequence 
armi/utils/tests/test_iterables.py::TestIterables::test_flatten 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_flatten 
armi/utils/tests/test_iterables.py::TestIterables::test_listPivot 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_listPivot 
armi/utils/tests/test_iterables.py::TestIterables::test_packingAndUnpackingBinaryStrings 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_packingAndUnpackingBinaryStrings 
armi/utils/tests/test_iterables.py::TestIterables::test_packingAndUnpackingHexStrings 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_packingAndUnpackingHexStrings 
armi/utils/tests/test_iterables.py::TestIterables::test_sequence 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_sequence 
armi/utils/tests/test_iterables.py::TestIterables::test_sequenceInit 
[gw2] [ 86%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_sequenceInit 
armi/utils/tests/test_iterables.py::TestIterables::test_split 
[gw2] [ 87%] PASSED armi/utils/tests/test_iterables.py::TestIterables::test_split 
armi/utils/tests/test_mathematics.py::TestMath::test_average1DWithinTolerance 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_average1DWithinTolerance 
armi/utils/tests/test_mathematics.py::TestMath::test_average1DWithinToleranceInvalid 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_average1DWithinToleranceInvalid 
armi/utils/tests/test_mathematics.py::TestMath::test_convertToSlice 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_convertToSlice 
armi/utils/tests/test_mathematics.py::TestMath::test_efmt 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_efmt 
armi/utils/tests/test_mathematics.py::TestMath::test_expandRepeatedFloats 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_expandRepeatedFloats 
armi/utils/tests/test_mathematics.py::TestMath::test_findClosest 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_findClosest 
armi/utils/tests/test_mathematics.py::TestMath::test_findNearestValue 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_findNearestValue 
armi/utils/tests/test_mathematics.py::TestMath::test_fixThreeDigitExp 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_fixThreeDigitExp 
armi/utils/tests/test_mathematics.py::TestMath::test_getFloat 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_getFloat 
armi/utils/tests/test_mathematics.py::TestMath::test_getStepsFromValues 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_getStepsFromValues 
armi/utils/tests/test_mathematics.py::TestMath::test_isMonotonic 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_isMonotonic 
armi/utils/tests/test_mathematics.py::TestMath::test_linearInterpolation 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_linearInterpolation 
armi/utils/tests/test_mathematics.py::TestMath::test_minimizeScalarFunc 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_minimizeScalarFunc 
armi/utils/tests/test_mathematics.py::TestMath::test_newtonsMethod 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_newtonsMethod 
armi/utils/tests/test_mathematics.py::TestMath::test_parabola 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_parabola 
armi/utils/tests/test_mathematics.py::TestMath::test_parabolicInterpolation 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_parabolicInterpolation 
armi/utils/tests/test_mathematics.py::TestMath::test_relErr 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_relErr 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg0 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg0 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg1 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg1 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg2 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg2 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg3 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg3 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg4 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg4 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg5 
[gw2] [ 87%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg5 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg6 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg6 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg7 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvg7 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgAllNones 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgAllNones 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgComplicatedNone 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgComplicatedNone 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgNpArray 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgNpArray 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgNpArrayAverage 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgNpArrayAverage 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgOneNone 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseAvgOneNone 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum0 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum0 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum1 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum1 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum2 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum2 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum3 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum3 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum4 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum4 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum5 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum5 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum6 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum6 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum7 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSum7 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSumAllNones 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSumAllNones 
armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSumOneNone 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_resampleStepwiseSumOneNone 
armi/utils/tests/test_mathematics.py::TestMath::test_rotateXY 
[gw2] [ 88%] PASSED armi/utils/tests/test_mathematics.py::TestMath::test_rotateXY 
armi/utils/tests/test_outputCache.py::TestOutputCache::test_deleteCache 
[gw3] [ 88%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyPitch 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyWithLoc 
[gw0] [ 88%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_getAllLocations 
armi/reactor/tests/test_zones.py::TestZones::test_getZoneLocations 
[gw1] [ 88%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_setPowerIfNecessary 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_sortAssemByRing 
[gw2] [ 88%] PASSED armi/utils/tests/test_outputCache.py::TestOutputCache::test_deleteCache 
armi/utils/tests/test_outputCache.py::TestOutputCache::test_getCachedFolder 
[gw2] [ 88%] PASSED armi/utils/tests/test_outputCache.py::TestOutputCache::test_getCachedFolder 
armi/utils/tests/test_outputCache.py::TestOutputCache::test_hashFiles 
[gw2] [ 88%] PASSED armi/utils/tests/test_outputCache.py::TestOutputCache::test_hashFiles 
armi/utils/tests/test_outputCache.py::TestOutputCache::test_makeOutputManifest 
[gw2] [ 89%] PASSED armi/utils/tests/test_outputCache.py::TestOutputCache::test_makeOutputManifest 
armi/utils/tests/test_outputCache.py::TestOutputCache::test_retrieveOutput 
[gw2] [ 89%] PASSED armi/utils/tests/test_outputCache.py::TestOutputCache::test_retrieveOutput 
armi/utils/tests/test_parsing.py::LiteralEvalTest::test_parseValue 
[gw2] [ 89%] PASSED armi/utils/tests/test_parsing.py::LiteralEvalTest::test_parseValue 
armi/utils/tests/test_parsing.py::LiteralEvalTest::test_tryLiteralEval 
[gw2] [ 89%] PASSED armi/utils/tests/test_parsing.py::LiteralEvalTest::test_tryLiteralEval 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_cleanPathNoMpi 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_cleanPathNoMpi 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_copyOrWarnDir 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_copyOrWarnDir 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_copyOrWarnFile 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_copyOrWarnFile 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_importCustomModule 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_importCustomModule 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_isAccessible 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_isAccessible 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_isFilePathNewer 
[gw3] [ 89%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyWithLoc 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyWithName 
[gw0] [ 89%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_getZoneLocations 
armi/reactor/tests/test_zones.py::TestZones::test_sortZones 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_isFilePathNewer 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_moduleAndAttributeExist 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_moduleAndAttributeExist 
armi/utils/tests/test_pathTools.py::PathToolsTests::test_separateModuleAndAttribute 
[gw2] [ 89%] PASSED armi/utils/tests/test_pathTools.py::PathToolsTests::test_separateModuleAndAttribute 
armi/utils/tests/test_plotting.py::TestPlotting::test_plotAssemblyTypes 
[gw1] [ 89%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_sortAssemByRing 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_sortChildren 
[gw3] [ 89%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAssemblyWithName 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAvgTemp 
[gw0] [ 89%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_sortZones 
armi/reactor/tests/test_zones.py::TestZones::test_summary 
[gw2] [ 89%] PASSED armi/utils/tests/test_plotting.py::TestPlotting::test_plotAssemblyTypes 
armi/utils/tests/test_plotting.py::TestPlotting::test_plotBlockFlux 
[gw0] [ 89%] PASSED armi/reactor/tests/test_zones.py::TestZones::test_summary 
armi/settings/fwSettings/tests/test_fwSettings.py::TestSchema::test_schema 
[gw1] [ 89%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_sortChildren 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_updateBlockBOLHeights_DBLoad 
[gw3] [ 89%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getAvgTemp 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getBlocksByIndices 
[gw2] [ 89%] PASSED armi/utils/tests/test_plotting.py::TestPlotting::test_plotBlockFlux 
armi/utils/tests/test_plotting.py::TestPlotting::test_plotCartesianBlock 
[gw0] [ 89%] PASSED armi/settings/fwSettings/tests/test_fwSettings.py::TestSchema::test_schema 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_extraAssignments 
[gw0] [ 89%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_extraAssignments 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_incompleteAssignment 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_incompleteAssignment 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_invalidArgumentTypes 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_invalidArgumentTypes 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_missingAssignments 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_missingAssignments 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_serializeSettingsException 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_serializeSettingsException 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_validAssignments 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_validAssignments 
armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_yamlIO 
[gw0] [ 90%] PASSED armi/settings/fwSettings/tests/test_tightCouplingSettings.py::TestTightCouplingSettings::test_yamlIO 
armi/settings/tests/test_inspectors.py::TestInspector::test_assignCS 
[gw0] [ 90%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_assignCS 
armi/settings/tests/test_inspectors.py::TestInspector::test_callableCorrectionCheck 
[gw0] [ 90%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_callableCorrectionCheck 
armi/settings/tests/test_inspectors.py::TestInspector::test_changeOfCS 
[gw0] [ 90%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_changeOfCS 
armi/settings/tests/test_inspectors.py::TestInspector::test_checkForBothSimpleAndDetailedCyclesInputs 
[gw0] [ 90%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_checkForBothSimpleAndDetailedCyclesInputs 
armi/settings/tests/test_inspectors.py::TestInspector::test_correctCyclesToZeroBurnup 
[gw0] [ 90%] PASSED armi/settings/tests/test_inspectors.py::TestInspector::test_correctCyclesToZeroBurnup 
armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPlugins 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPlugins 
armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPluginsAbsPath 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPluginsAbsPath 
armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPluginsFromSettings 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_registerUserPluginsFromSettings 
armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginOnProcessCoreLoading 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginOnProcessCoreLoading 
armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginWithInterfaces 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginWithInterfaces 
armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginsFlags 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_userPluginsFlags 
armi/tests/test_user_plugins.py::TestUserPlugins::test_validateUserPluginLimitations 
[gw0] [ 90%] PASSED armi/tests/test_user_plugins.py::TestUserPlugins::test_validateUserPluginLimitations 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_cartesian 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_cartesian 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_flatHexBases 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_flatHexBases 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullCornersUp 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullCornersUp 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullCornersUpSpotCheck 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullCornersUpSpotCheck 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullFlat 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullFlat 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullFlatsUp 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexFullFlatsUp 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexSmallFlat 
[gw0] [ 90%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexSmallFlat 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexThird 
[gw0] [ 91%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexThird 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexWithEmptyRow 
[gw0] [ 91%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexWithEmptyRow 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexWithHoles 
[gw0] [ 91%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_hexWithHoles 
armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_troublesomeHexThird 
[gw0] [ 91%] PASSED armi/utils/tests/test_asciimaps.py::TestAsciiMaps::test_troublesomeHexThird 
armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_alternate_usages 
[gw0] [ 91%] PASSED armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_alternate_usages 
armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_master 
[gw0] [ 91%] PASSED armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_master 
armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_messy_starts_and_stops 
[gw2] [ 91%] PASSED armi/utils/tests/test_plotting.py::TestPlotting::test_plotCartesianBlock 
armi/utils/tests/test_plotting.py::TestPlotting::test_plotDepthMap 
[gw0] [ 91%] PASSED armi/utils/tests/test_codeTiming.py::CodeTimingTest::test_messy_starts_and_stops 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_radar 
[gw3] [ 91%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getBlocksByIndices 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getDominantMaterial 
[gw2] [ 91%] PASSED armi/utils/tests/test_plotting.py::TestPlotting::test_plotDepthMap 
armi/utils/tests/test_plotting.py::TestPlotting::test_plotHexBlock 
[gw2] [ 91%] PASSED armi/utils/tests/test_plotting.py::TestPlotting::test_plotHexBlock 
armi/utils/tests/test_plotting.py::TestPatches::test_makeAssemPatches 
[gw1] [ 91%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_updateBlockBOLHeights_DBLoad 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_whenNoAssemblies 
[gw0] [ 91%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_radar 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_valueVsTime 
[gw0] [ 91%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_valueVsTime 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_xsHistoryVsTime 
[gw3] [ 91%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getDominantMaterial 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFirstFuelBlockAxialNode 
[gw0] [ 91%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_xsHistoryVsTime 
armi/utils/tests/test_tabulate.py::TestTabulateAPI::test_tabulateFormats 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateAPI::test_tabulateFormats 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_dictLike 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_dictLike 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfEmpties 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfEmpties 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterables 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterables 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterablesFirstrow 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterablesFirstrow 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterablesHeaders 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_iterableOfIterablesHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listBytes 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listBytes 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDicts 
[gw0] [ 91%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDicts 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsFirstrow 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsFirstrow 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithDictOfHeaders 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithDictOfHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithListOfHeaders 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithListOfHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithMissingKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfDictsWithMissingKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfLists 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfLists 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfListsFirstrow 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfListsFirstrow 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfListsKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfListsKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfNamedtuples 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfNamedtuples 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfNamedtuplesKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfNamedtuplesKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfOrdereddicts 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfOrdereddicts 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfUserdicts 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfUserdicts 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfUserdictsKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_listOfUserdictsKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2d 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2d 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2dFirstrow 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2dFirstrow 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2dKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpy2dKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArray 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArray 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArrayHeaders 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArrayHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArrayKeys 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_numpyRecordArrayKeys 
armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_tightCouplingExample 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInputs::test_tightCouplingExample 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyBottomMultiTextMultiplePad 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyBottomMultiTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyBottomSingleTextMultiplePad 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyBottomSingleTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyCenterMultiTextMultiplePad 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyCenterMultiTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyCenterSingleTextMultiplePad 
[gw0] [ 92%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyCenterSingleTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyOneLineOnly 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyOneLineOnly 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyTopMultiTextMultiplePad 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyTopMultiTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyTopSingleTextMultiplePad 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignCellVeriticallyTopSingleTextMultiplePad 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimal 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimal 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimalWithIncorrectThousandSeparators 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimalWithIncorrectThousandSeparators 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimalWithThousandSeparators 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnDecimalWithThousandSeparators 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnMultiline 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnNone 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_alignColumnNone 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_assortedRareEdgeCases 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_assortedRareEdgeCases 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_bool 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_bool 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_buildLine 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_buildLine 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_buildRow 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_buildRow 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_format 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_format 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_isMultiline 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_isMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_multilineWidth 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_multilineWidth 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_normalizeTabularData 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_normalizeTabularData 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_type 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_type 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_visibleWidth 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_visibleWidth 
armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_wrapTextToColWidths 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateInternal::test_wrapTextToColWidths 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignMulti 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignMulti 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignMultiWithSepLine 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignMultiWithSepLine 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignOrheadersAlignTooLong 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_colAlignOrheadersAlignTooLong 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_columnAlignment 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_columnAlignment 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_columnGlobalAndSpecificAlignment 
[gw0] [ 93%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_columnGlobalAndSpecificAlignment 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_dictLikeWithIndex 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_dictLikeWithIndex 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseDefault 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseDefault 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseList 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseList 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseTrue 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_disableNumParseTrue 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyData 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyData 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyDataWithHeaders 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyDataWithHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyDataWithoutHeaders 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_emptyDataWithoutHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatConversions 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatConversions 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatFmt 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatFmt 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatFmtMulti 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_floatFmtMulti 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_github 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_github 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_grid 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_grid 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridHeaderless 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultiline 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineHeaderless 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineWithEmptyCells 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineWithEmptyCells 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineWithEmptyCellsHeaderless 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_gridMultilineWithEmptyCellsHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_headersGlobalAndSpecificAlignment 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_headersGlobalAndSpecificAlignment 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_intFmt 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_intFmt 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndex 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndex 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndexFirstrow 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndexFirstrow 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndexWithSepLine 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithIndexWithSepLine 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithSuppliedIndex 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_listOfListsWithSuppliedIndex 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxColWidthsingleValue 
[gw0] [ 94%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxColWidthsingleValue 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxcolwidthHonorDisableParsenum 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxcolwidthHonorDisableParsenum 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxcolwidthPadTailingWidths 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_maxcolwidthPadTailingWidths 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_missingVal 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_missingVal 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_missingValMulti 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_missingValMulti 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_noData 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_noData 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_noDataWithoutHeaders 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_noDataWithoutHeaders 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plain 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plain 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMaxcolwidthAutowraps 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMaxcolwidthAutowraps 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMaxcolwidthAutowrapsWithSep 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMaxcolwidthAutowrapsWithSep 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultiline 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithEmptyCells 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithEmptyCells 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithEmptyCellsHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithEmptyCellsHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithLinks 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainMultilineWithLinks 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainmaxHeaderColWidthsAutowraps 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_plainmaxHeaderColWidthsAutowraps 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_pretty 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_pretty 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultiline 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithEmptyCells 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithEmptyCells 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithEmptyCellsHeaderless 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithEmptyCellsHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithLinks 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_prettyMultilineWithLinks 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_readmeExampleWithSep 
[gw0] [ 95%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_readmeExampleWithSep 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rst 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rst 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstHeaderless 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultiline 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithEmptyCells 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithEmptyCells 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithEmptyCellsHeaderless 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithEmptyCellsHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithLinks 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstMultilineWithLinks 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstWithEmptyValuesInFirstColumn 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_rstWithEmptyValuesInFirstColumn 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simple 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simple 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleHeaderless 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleHeaderlessWithSepLine 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleHeaderlessWithSepLine 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline2 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline2 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline2WithSepLine 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultiline2WithSepLine 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineHeaderless 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithEmptyCells 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithEmptyCells 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithEmptyCellsHeaderless 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithEmptyCellsHeaderless 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithLinks 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleMultilineWithLinks 
armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleWithSepLine 
[gw0] [ 96%] PASSED armi/utils/tests/test_tabulate.py::TestTabulateOutput::test_simpleWithSepLine 
armi/utils/tests/test_textProcessors.py::TestTextProcessor::test_fsearch 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::TestTextProcessor::test_fsearch 
armi/utils/tests/test_textProcessors.py::TestTextProcessor::test_fsearchText 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::TestTextProcessor::test_fsearchText 
armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_findIncludes 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_findIncludes 
armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_resolveIncludes 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_resolveIncludes 
armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_resolveIncludes_StringIO 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::YamlIncludeTest::test_resolveIncludes_StringIO 
armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_consumeLine 
[gw0] [ 96%] PASSED armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_consumeLine 
armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_issueWarningOnFindingText 
[gw0] [ 97%] PASSED armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_issueWarningOnFindingText 
armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_raiseErrorOnFindingText 
[gw0] [ 97%] PASSED armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_raiseErrorOnFindingText 
armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_readFile 
[gw0] [ 97%] PASSED armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_readFile 
armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_readFileWithPattern 
[gw0] [ 97%] PASSED armi/utils/tests/test_textProcessors.py::SequentialReaderTests::test_readFileWithPattern 
armi/utils/tests/test_triangle.py::TestTriangle::test_checkIfPointIsInTriangle 
[gw0] [ 97%] PASSED armi/utils/tests/test_triangle.py::TestTriangle::test_checkIfPointIsInTriangle 
armi/utils/tests/test_triangle.py::TestTriangle::test_checkIfPointIsInTriangle2 
[gw0] [ 97%] PASSED armi/utils/tests/test_triangle.py::TestTriangle::test_checkIfPointIsInTriangle2 
armi/utils/tests/test_triangle.py::TestTriangle::test_getTriangleArea 
[gw0] [ 97%] PASSED armi/utils/tests/test_triangle.py::TestTriangle::test_getTriangleArea 
armi/utils/tests/test_units.py::TestUnits::test_convertXtoPascal 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_convertXtoPascal 
armi/utils/tests/test_units.py::TestUnits::test_getTc 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getTc 
armi/utils/tests/test_units.py::TestUnits::test_getTemperature 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getTemperature 
armi/utils/tests/test_units.py::TestUnits::test_getTf 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getTf 
armi/utils/tests/test_units.py::TestUnits::test_getTk 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getTk 
armi/utils/tests/test_units.py::TestUnits::test_getTmev 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getTmev 
armi/utils/tests/test_units.py::TestUnits::test_getXYLineParameters 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_getXYLineParameters 
armi/utils/tests/test_units.py::TestUnits::test_pressure_converter 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_pressure_converter 
armi/utils/tests/test_units.py::TestUnits::test_sanitizeAngle 
[gw0] [ 97%] PASSED armi/utils/tests/test_units.py::TestUnits::test_sanitizeAngle 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_capStrLen 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_capStrLen 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_classesInHierarchy 
[gw1] [ 97%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_whenNoAssemblies 
armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_add 
[gw1] [ 97%] PASSED armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_add 
armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getAssembliesInSquareRing 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_classesInHierarchy 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_codeTiming 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_codeTiming 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_createFormattedStrWithDelimiter 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_createFormattedStrWithDelimiter 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_getFileSHA1Hash 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_getFileSHA1Hash 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_getFileSHA1HashDir 
[gw0] [ 97%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_getFileSHA1HashDir 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_list2str 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_list2str 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_mergeableDictionary 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_mergeableDictionary 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_plotMatrix 
[gw1] [ 98%] PASSED armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getAssembliesInSquareRing 
armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getAssemblyPitch 
[gw1] [ 98%] PASSED armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getAssemblyPitch 
armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getNuclideCategoriesLogging 
[gw1] [ 98%] PASSED armi/reactor/tests/test_reactors.py::CartesianReactorTests::test_getNuclideCategoriesLogging 
armi/reactor/tests/test_reactors.py::CartesianReactorNeighborTests::test_findNeighborsCartesian 
[gw1] [ 98%] PASSED armi/reactor/tests/test_reactors.py::CartesianReactorNeighborTests::test_findNeighborsCartesian 
armi/reactor/tests/test_rz_reactors.py::TestRZTReactor::test_findAllMeshPoints 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_plotMatrix 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_prependToList 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_prependToList 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeCopy 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeCopy 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeMove 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeMove 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeMoveDir 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_safeMoveDir 
armi/utils/tests/test_utils.py::TestGeneralUtils::test_slantSplit 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::TestGeneralUtils::test_slantSplit 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getAvailabilityFactors 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getAvailabilityFactors 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getBurnSteps 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getBurnSteps 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCumulativeNodeNum 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCumulativeNodeNum 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleLengths 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleLengths 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNames 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNames 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNodeFromCumulativeNode 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNodeFromCumulativeNode 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNodeFromCumulativeStep 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getCycleNodeFromCumulativeStep 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getMaxBurnSteps 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getMaxBurnSteps 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getNodesPerCycle 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getNodesPerCycle 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getPowerFractions 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getPowerFractions 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getPreviousTimeNode 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getPreviousTimeNode 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getStepLengths 
[gw0] [ 98%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_getStepLengths 
armi/utils/tests/test_utils.py::CyclesSettingsTests::test_hasBurnup 
[gw0] [ 99%] PASSED armi/utils/tests/test_utils.py::CyclesSettingsTests::test_hasBurnup 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFirstFuelBlockAxialNode 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFluxVector 
[gw1] [ 99%] PASSED armi/reactor/tests/test_rz_reactors.py::TestRZTReactor::test_findAllMeshPoints 
armi/reactor/tests/test_rz_reactors.py::TestRZTReactor::test_loadRZT 
[gw1] [ 99%] PASSED armi/reactor/tests/test_rz_reactors.py::TestRZTReactor::test_loadRZT 
[gw2] [ 99%] PASSED armi/utils/tests/test_plotting.py::TestPatches::test_makeAssemPatches 
armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_cannotAssignValueToImmutableProperty 
[gw2] [ 99%] PASSED armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_cannotAssignValueToImmutableProperty 
armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_retreivingUnassignedValueRaisesError 
[gw2] [ 99%] PASSED armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_retreivingUnassignedValueRaisesError 
armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_unlockDoesNotPermitsReassignmentOfAnImmutableProperty 
[gw2] [ 99%] PASSED armi/utils/tests/test_properties.py::ImmutablePropertyTests::test_unlockDoesNotPermitsReassignmentOfAnImmutableProperty 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_createPlotMetaData 
[gw2] [ 99%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_createPlotMetaData 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_keffVsTime 
[gw2] [ 99%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_keffVsTime 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_movesVsCycle 
[gw2] [ 99%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_movesVsCycle 
armi/utils/tests/test_reportPlotting.py::TestRadar::test_plotAxialProfile 
[gw2] [ 99%] PASSED armi/utils/tests/test_reportPlotting.py::TestRadar::test_plotAxialProfile 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFluxVector 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFuelBottomHeight 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getFuelBottomHeight 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getGridBounds 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getGridBounds 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMass 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMass 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMaxAssembliesInHexRing 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMaxAssembliesInHexRing 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMaxNumPins 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMaxNumPins 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMinimumPercentFluxInFuel 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getMinimumPercentFluxInFuel 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNozzleTypes 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNozzleTypes 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNuclideCategories 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNuclideCategories 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumAssembliesWithAllRingsFilledOut 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumAssembliesWithAllRingsFilledOut 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumAssembliesWithAllRingsFilledOutBipass 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumAssembliesWithAllRingsFilledOutBipass 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumEnergyGroups 
[gw3] [ 99%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumEnergyGroups 
armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumRings 
[gw3] [100%] PASSED armi/reactor/tests/test_reactors.py::HexReactorTests::test_getNumRings 

=============================== warnings summary ===============================
../../../../../opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/jupyter_client/connect.py:22
../../../../../opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/jupyter_client/connect.py:22
../../../../../opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/jupyter_client/connect.py:22
../../../../../opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/jupyter_client/connect.py:22
  /opt/hostedtoolcache/Python/3.13.2/x64/lib/python3.13/site-packages/jupyter_client/connect.py:22: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs
  given by the platformdirs library.  To remove this warning and
  see the appropriate new directories, set the environment variable
  `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`.
  The use of platformdirs will be the default in `jupyter_core` v6
    from jupyter_core.paths import jupyter_data_dir, jupyter_runtime_dir, secure_write

armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_numberDensities
armi/reactor/blueprints/tests/test_customIsotopics.py::TestNuclideFlagsExpansion::test_expandedNatural
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_construct
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_excoreStructure
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_materialDataSummary
armi/reactor/blueprints/tests/test_reactorBlueprints.py::TestReactorBlueprints::test_spentFuelPool
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_customDensityLogsAndErrors
armi/reactor/blueprints/tests/test_customIsotopics.py::TestCustomIsotopics::test_expandedNatural
  /home/runner/work/armi/armi/armi/reactor/blocks.py:287: RuntimeWarning: invalid value encountered in scalar divide
    smearDensity = fuelComponentArea / totalMovableArea

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
------- generated xml file: /home/runner/work/armi/armi/test_results.xml -------
============================= slowest 30 durations =============================
21.69s setup    armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_calcMGFluence
21.60s call     armi/tests/test_notebooks.py::NotebookTests::test_runDataModel
16.52s call     armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyParameters
16.47s call     armi/cases/tests/test_cases.py::TestArmiCase::test_summarizeDesign
16.45s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_differentNuclideModels
15.27s call     armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_historyReport
13.68s call     armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_calcMGFluence
13.66s call     armi/reactor/converters/tests/test_axialExpansionChanger.py::TestInputHeightsConsideredHot::test_coldAssemblyExpansion
11.34s call     armi/bookkeeping/tests/test_historyTracker.py::TestHistoryTracker::test_getBlockInAssembly
10.00s call     armi/physics/fuelCycle/tests/test_fuelHandlers.py::TestFuelHandler::test_repeatShuffles
9.83s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_findNeighbors
9.24s call     armi/tests/test_notebooks.py::NotebookTests::test_runParamSweep
9.20s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_growToFullCore
8.87s call     armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_load
8.83s call     armi/reactor/tests/test_zones.py::TestZones::test_dictionaryInterface
8.62s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_restoreReactor
8.15s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_factorySortSetting
7.44s call     armi/bookkeeping/db/tests/test_database3.py::TestDatabaseSmaller::test_prepRestartRun
7.39s call     armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMesh
7.19s call     armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_loadSortSetting
7.19s call     armi/cases/tests/test_suiteBuilder.py::TestLatinHyperCubeSuiteBuilder::test_buildSuite
7.10s call     armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_clearAssemblyState
7.04s call     armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemWithUniformMeshSubmesh
6.80s call     armi/reactor/converters/tests/test_uniformMesh.py::TestConverterFactory::test_converterFactory
6.78s setup    armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading::test_growToFullCore
6.73s call     armi/reactor/converters/tests/test_uniformMesh.py::TestAssemblyUniformMesh::test_makeAssemUniformMeshParamMappingSameMesh
6.40s call     armi/bookkeeping/db/tests/test_database3.py::TestDatabase::test_history
5.91s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_updateBlockBOLHeights_DBLoad
5.66s call     armi/reactor/tests/test_reactors.py::HexReactorTests::test_applyThermalExpansion_CoreConstruct
5.55s call     armi/reactor/converters/tests/test_meshConverters.py::TestRZReactorMeshConverter::test_meshByRingCompositionAxialBinsLargeCore
========== 2391 passed, 20 skipped, 12 warnings in 241.81s (0:04:01) ===========