-
Type: Improvement
-
Resolution: Done
-
Priority: Minor - P4
-
Affects Version/s: None
-
Component/s: None
-
None
To test Motor's SSL features in Python 3.x in Jenkins, I need to:
- Build Motor and its tests with 2to3
- Run only the test_motor_ssl suite
- Generate a nosetests.xml results file
Right now, doing all three of these is beyond me: I can build Motor and its tests and run them all, without generating an XML file, using:
python3.3 setup.py test
or I can run a specific suite, and generate XML, but not run 2to3, using:
nosetests-3.3 test.test_motor_ssl
but I am too stupid to find a way to satisfy all three requirements.