pubs/test_script.sh
2019-01-05 20:58:43 +09:00

11 lines
270 B
Bash
Executable File

if [ "$TEST_MODE" = "TEST" ]; then
PUBS_TESTS_MODE=MOCK python setup.py test;
if [ "$TO_TEST" = "FULL" ]; then PUBS_TESTS_MODE=COLLECT python setup.py test; fi;
fi
if [ "$TEST_MODE" = "INSTALL" ]; then
pip install pubs;
pubs --help;
pip uninstall -y pubs;
fi