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
270 B
11 lines
270 B
6 years ago
|
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
|