-
Notifications
You must be signed in to change notification settings - Fork 1
Conversation
taldcroft
commented
Apr 2, 2013
- Ska.engarchive 0.21 to 0.22.1: Allow remote Windows access to archive (M. Baski)
- Chandra.taco 0.1 to 0.2: Allow for reproducible ACIS FP predictions
- Xija 0.2.7 to 0.3.2: Allow for different pitch bins in SolarHeat model
- Chandra.Time 1.14 to 1.15.1: Fix a bug in GRETA time conversion
- Matplotlib 1.2 to 1.2.1: bug fix release
- Pyger 0.2.7 to 0.3.0: Add Xija MinusZ model
- Astropy 0.2.1: http://astropy.org
@taldcroft - I'm having issues installing this new version of xija on Windows, due to the remote access code I added in engarchive. Xija init (which is executed in its setup.py: "from xija.version import version") imports engarchive.fetch which then automatically tries to establish a connection to the remote Ska on GRETA (querying the user, which disrupts the installation process). Perhaps the remote access needs to be performed differently (not during import, though that would necessitate major changes to fetch), or can you think of other options? Perhaps we could disable remote access as part of setup.py(?) |
I learned a dirty trick from the astropy crowd. In https://github.com/astropy/astropy/blob/master/setup.py#L28 So you basically set a flag that says you are running https://github.com/astropy/astropy/blob/master/astropy/nddata/__init__.py |
OK, the |
@mbaski - Following on from the comment in sot/cheta#50 about testing, there are two more modules with self tests that you can now run from the python shell on installed modules:
I noticed that on i686 on GRETA there is one Chandra.Time test that fails:
This is just a floating point representation issue. If it passes for you on Windows then I'm inclined to let this slide for now and I can fix up the test later. This version of Skare 0.15 (tag 0.15-rc2) is installed on GRETA and the source tar balls should all be there. |
The Chandra.Time test ran fine on Windows (though I had to run it the way I normally do, through the setup.py utility due to stdin issues) - just the one difference in date representation that always occurs: AssertionError: '01/01/99 12:13:14' != 'Fri Jan 1 12:13:14 1999' By the way, the test_secs test with the 441763266.18399996 check passed. |
The xija test had issues on Windows, but the thermal models called from MCC seem to be working fine, so I'm not planning to investigate.. ================================================= test session starts ================================================= test_models.py s...F ====================================================== FAILURES =======================================================
'> model.make() test_models.py:145: self = <xija.model.XijaModel object at 0x000000000C89CA20>
'> self.make_mvals() ..\model.py:409: self = <xija.model.XijaModel object at 0x000000000C89CA20>
'> self.mvals = np.hstack(comp.dvals for comp in preds + unpreds) ..\model.py:434: tup = <generator object at 0x000000000C8A4318>
'> return _nx.concatenate(map(atleast_1d,tup),1) ....\numpy\core\shape_base.py:270: .0 = <listiterator object at 0x000000000C89EEB8> '> self.mvals = np.hstack(comp.dvals for comp in preds + unpreds) ..\model.py:434: self = <xija.component.heat.SolarHeat object at 0x000000000C89C048>
'> Ps = self.parvals[0:self.n_pitches] + self.bias ..\component\heat.py:116: self = <xija.component.heat.SolarHeat object at 0x000000000C89C048>
'> return self.pars[index].val ..\component\base.py:50: IndexError |
The test failure looks like a configuration / version issue, since the code that is giving the This test should definitely pass on all supported platforms since it is testing the main change in xija 0.3 to allow SolarHeat models with different numbers of pitch bins. There are currently no production models that use the capability (hence MCC passing), but I believe @matthewdahmer is planning on taking advantage of this for the next release of the MinusYZ or other models. |
@mbaski - Agreed we can let this go for now but it may be possible to fix the test. On windows can you do the following:
This should give the local OS representation of that datetime. I'm guessing on Windows you'll see |
Windows actually generates : 'Fri Jan 1 12:13:14 1999' for that. It's one of the mxDateTime tests that generates a difference: from Chandra.Time import DateTime Outputs '01/01/99 12:13:14' on Windows, but ''Fri Jan 1 12:13:14 1999'' on linux. |
Rats, I was hoping the mxDateTime |
Thanks for catching the configuration issue I had with Xija. For some reason, setup.py installed some of the updates but not all. I had to completely delete the xija directory and then re-run the install to get all the updates. The test appears to be successful now (4 passed, but 1 skipped?): ================================================= test session starts ================================================= test_models.py s.... ========================================= 4 passed, 1 skipped in 0.18 seconds ========================================= |
Woohoo for unit tests. :-) The one skip is expected for a platform without direct access to the commanded states database. |