You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
776 B
11 lines
776 B
#!/bin/sh |
|
command -v coverage >/dev/null && coverage erase |
|
command -v python-coverage >/dev/null && python-coverage erase |
|
# nosetests pandas/tests/test_index.py --with-coverage --cover-package=pandas.core --pdb-failure --pdb |
|
#nosetests -w pandas --with-coverage --cover-package=pandas --pdb-failure --pdb #--cover-inclusive |
|
#nosetests -A "not slow" -w pandas/tseries --with-coverage --cover-package=pandas.tseries $* #--cover-inclusive |
|
nosetests -w pandas --with-coverage --cover-package=pandas $* |
|
# nosetests -w pandas/io --with-coverage --cover-package=pandas.io --pdb-failure --pdb |
|
# nosetests -w pandas/core --with-coverage --cover-package=pandas.core --pdb-failure --pdb |
|
# nosetests -w pandas/stats --with-coverage --cover-package=pandas.stats |
|
# coverage run runtests.py
|
|
|