This is an old revision of the document!
Test executed on commit 37e480aad92e5e0346fdd4228ee271a15864ddf4
Report generated on 22-Jul-2016 at 16:12:51
Platform | Linux-3.16.0-70-generic-x86_64-with-debian-jessie-sid |
Python | 2.7.11 |
14 tests ran in 183.24 seconds.
4 passed, 14 skipped, 10 failed, 0 errors.
0 expected failures, 0 unexpected passes.
Result | Test | Duration | Links | |
---|---|---|---|---|
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_ion_number_density[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 0.08 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0ad124a90> def test_plasma_ion_number_density(self): assert_allclose( self.reference['/simulation/model/plasma/ion_number_density'], > self.result.plasma.ion_number_density.cgs.value ) tardis/tests/integration_tests/test_integration.py:78: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 \ atomic_n...30 0.000000e+00 0.000000e+00 0.000000e+00 [488 rows x 27 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_level_number_density[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 0.11 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0aab5ff10> def test_plasma_level_number_density(self): assert_allclose( self.reference['/simulation/model/plasma/level_number_density'], > self.result.plasma.level_number_density.cgs.value ) tardis/tests/integration_tests/test_integration.py:84: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 \ atomic_nu... 0 0 0 0 0 0 0 0 0 0 [24713 rows x 27 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_electron_densities[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 0.01 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0a9f58410> def test_plasma_electron_densities(self): assert_allclose( self.reference['/simulation/model/plasma/electron_densities'], > self.result.plasma.electron_densities.cgs.value ) tardis/tests/integration_tests/test_integration.py:90: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1.986685e+09 1 1.871201e+09 2 2.110118e+09 3 2.173392e+09 4 ...925e+07 24 5.215910e+07 25 4.620390e+07 26 4.038320e+07 dtype: float64 name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'Series' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_tau_sobolevs[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 1.05 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0aab63510> def test_plasma_tau_sobolevs(self): assert_allclose( self.reference['/simulation/model/plasma/tau_sobolevs'], > self.result.plasma.tau_sobolevs.cgs.value ) tardis/tests/integration_tests/test_integration.py:96: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 3 4 ... 0 0 0 0 565129 0 0 0 0 0 0 [271422 rows x 27 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_transition_probabilities[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 1.05 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0a7ca22d0> def test_plasma_transition_probabilities(self): assert_allclose( self.reference['/simulation/model/plasma/transition_probabilities'], > self.result.plasma.transition_probabilities.cgs.value ) tardis/tests/integration_tests/test_integration.py:102: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 3 \ ... 3.831005e-01 36189 1.000000e+00 [271422 rows x 27 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 104, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_blue_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 110, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_last_line_interactions[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 120, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_nubar_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 138, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_ws[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 144, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_luminosity_inner[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 150, u'Skipped: Introduction of HDF mechanism.') | |
Passed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_spectrum[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 0.93 |
No log output captured. | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_montecarlo_properties[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 192, u'Skipped: Introduction of HDF mechanism.') | |
Passed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_shell_temperature[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/w7] | 0.54 |
No log output captured. | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_ion_number_density[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.10 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0a962ba10> def test_plasma_ion_number_density(self): assert_allclose( self.reference['/simulation/model/plasma/ion_number_density'], > self.result.plasma.ion_number_density.cgs.value ) tardis/tests/integration_tests/test_integration.py:78: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 \ atomic_n... 30 0.000000e+00 0.000000e+00 [475 rows x 20 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_level_number_density[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.24 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0a810eed0> def test_plasma_level_number_density(self): assert_allclose( self.reference['/simulation/model/plasma/level_number_density'], > self.result.plasma.level_number_density.cgs.value ) tardis/tests/integration_tests/test_integration.py:84: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 \ atomic_nu...0 0 0.000000e+00 0.000000e+00 [24414 rows x 20 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_electron_densities[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.01 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0aab3d210> def test_plasma_electron_densities(self): assert_allclose( self.reference['/simulation/model/plasma/electron_densities'], > self.result.plasma.electron_densities.cgs.value ) tardis/tests/integration_tests/test_integration.py:90: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 2.153916e+10 1 1.991003e+10 2 1.708238e+10 3 1.358625e+10 4 ...091e+04 17 3.918710e+04 18 1.724594e+04 19 7.129566e+03 dtype: float64 name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'Series' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_tau_sobolevs[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.86 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0aab63a50> def test_plasma_tau_sobolevs(self): assert_allclose( self.reference['/simulation/model/plasma/tau_sobolevs'], > self.result.plasma.tau_sobolevs.cgs.value ) tardis/tests/integration_tests/test_integration.py:96: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 3 4 ...521e-24 7.559059e-25 1.127311e-25 1.455248e-26 [270394 rows x 20 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Failed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_plasma_transition_probabilities[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 1.02 |
self = <tardis.tests.integration_tests.test_integration.TestIntegration object at 0x7fb0aab81b90> def test_plasma_transition_probabilities(self): assert_allclose( self.reference['/simulation/model/plasma/transition_probabilities'], > self.result.plasma.transition_probabilities.cgs.value ) tardis/tests/integration_tests/test_integration.py:102: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = 0 1 2 3 4 \ transi... 1.000000 1.000000 1.000000 1.000000 1.000000 [270394 rows x 20 columns] name = 'cgs' def __getattr__(self, name): """After regular attribute access, try looking up the name This allows simpler access to columns for interactive use. """ # Note: obj.x will always call obj.__getattribute__('x') prior to # calling obj.__getattr__('x'). if (name in self._internal_names_set or name in self._metadata or name in self._accessors): return object.__getattribute__(self, name) else: if name in self._info_axis: return self[name] raise AttributeError("'%s' object has no attribute '%s'" % > (type(self).__name__, name)) E AttributeError: 'DataFrame' object has no attribute 'cgs' /home/darth_sidious/anaconda2/envs/tardis/lib/python2.7/site-packages/pandas/core/generic.py:2150: AttributeError | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 104, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_j_blue_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 110, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_last_line_interactions[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 120, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_nubar_estimators[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 138, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_ws[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 144, u'Skipped: Introduction of HDF mechanism.') | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_luminosity_inner[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 150, u'Skipped: Introduction of HDF mechanism.') | |
Passed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_spectrum[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.40 |
No log output captured. | |
Skipped | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_montecarlo_properties[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at]::setup | 0.00 |
('lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py', 192, u'Skipped: Introduction of HDF mechanism.') | |
Passed | lib.linux-x86_64-2.7/tardis/tests/integration_tests/test_integration.py::TestIntegration::()::test_shell_temperature[/tmp/tardis-test-g29dqb/lib.linux-x86_64-2.7/tardis/tests/integration_tests/at] | 0.42 |
No log output captured. |