authentic/jenkins.sh

15 lines
256 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2013-06-24 17:06:07 +02:00
set -e
for DIRECTORY in "htmlcov" "htmlcov-coverage-dj18-authentic-pg" "htmlcov-coverage-dj18-rbac-pg" "venv"
2018-06-29 09:55:42 +02:00
do
if [ -d "$DIRECTORY" ]; then
rm -r $DIRECTORY
fi
done
virtualenv venv
venv/bin/pip install tox
venv/bin/tox -rv