You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we can do test discovery without use of nose, then we should be able to run unit tests for Python 3 (issue #104) and pre-Python 2.4 (issue #103) more easily.
This addresses issue #105 by letting all tests be run using
Distribute's test, and in particular without using nose.
This paves the way for automatically running 2to3 when running
unit tests from Python 3, as described in issue #104.
If we can do test discovery without use of
nose
, then we should be able to run unit tests for Python 3 (issue #104) and pre-Python 2.4 (issue #103) more easily.With regard to Python 3, my preliminary attempts to pass
test_suite = 'nose.collector'
tosetup()
for use with Distribute'spython setup test
seemed to have issues.Specifically, this task is to set things up in accordance with the instructions here, namely to wrap the project's tests in a
unittest
test suite.The text was updated successfully, but these errors were encountered: