Skip to content

Commit

Permalink
Updated testing suite to work with nosetests.
Browse files Browse the repository at this point in the history
This required doing chmod -x * to remove executable permissions on
the scripts. I renamed test_all.py to run_all.py so nosetest wouldn't
attempt to run it as a test if someone made it non executable.
  • Loading branch information
jgoppert committed Mar 25, 2014
1 parent 3ea398e commit c6f610c
Show file tree
Hide file tree
Showing 8 changed files with 461 additions and 475 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
author = 'Richard Murray',
author_email = 'murray@cds.caltech.edu',
url = 'http://python-control.sourceforge.net',
requires = ['scipy', 'matplotlib'],
install_requires = ['scipy', 'matplotlib'],
tests_require = ['scipy', 'matplotlib', 'nose'],
package_dir = {'control' : 'src'},
packages = ['control'],
test_suite='nose.collector'
)
Empty file modified tests/bdalg_test.py
100755 → 100644
Empty file.
Empty file modified tests/convert_test.py
100755 → 100644
Empty file.
Empty file modified tests/matlab_test.py
100755 → 100644
Empty file.
File renamed without changes.
Empty file modified tests/statesp_test.py
100755 → 100644
Empty file.
Loading

0 comments on commit c6f610c

Please sign in to comment.