pyircbot/run-tests.sh

10 lines
216 B
Bash
Raw Normal View History

2017-11-27 19:04:22 -08:00
#!/bin/bash
export PYTHONUNBUFFERED=1
export PYTHONPATH=.
2019-02-11 12:06:36 -08:00
find pyircbot tests -name '*.pyc' -delete
find pyircbot tests -name __pycache__ -exec rm -rf {} \;
2018-02-10 18:27:50 -08:00
py.test --cov=pyircbot --cov-report html -n 4 tests/ $@