[IronPython] IronPython and nose

Sakesun Roykiattisak sakesun at boonthavorn.com
Tue Apr 29 03:44:31 CEST 2008


> Current SVN trunk *almost* works with IronPython 1.1.1. I filed an
> issue to nose project's issue tracker for remaining problems.
> http://code.google.com/p/python-nose/issues/detail?id=183

are you sure the patch is right ?

@@ -146,7 +146,7 @@
        self.exclude = None
        self.getTestCaseNamesCompat = False
        self.includeExe = env.get('NOSE_INCLUDE_EXE',
-                                sys.platform == 'win32')
+                                sys.platform == ('win32', 'cli'))



Isn't it should be "sys.platform in ('win32', 'cli'))" ?



More information about the Ironpython-users mailing list