mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 17:01:58 +00:00
12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pip install nose coverage
|
|
python setup.py develop
|
|
|
|
rm -rf coverage_html
|
|
coverage erase
|
|
python setup.py nosetests
|
|
RET=$?
|
|
|
|
exit $RET
|