-
Notifications
You must be signed in to change notification settings - Fork 657
Porting tests to Pytest
Utkarsh Bansal edited this page Feb 13, 2017
·
3 revisions
##Introduction Software testing is extremely important to the MDAnalysis project, so that users of the package can be confident in the results of their analysis. With the current test package nose, ceasing to be developed we have decided to move to using py.test.
There are a total of 4731 test cases(that nose executes).
Running the testsuite, with pytest gives the following output:
1789 failed, 2630 passed, 52 skipped, 1610 pytest-warnings, 26 error
- Classes with
__init__
methods are not collected for test cases.