10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
BASEDIR=`dirname $0`/..
|
|
|
|
rm -rf $BASEDIR/.tox $BASEDIR/env
|
|
echo "Deleted virtualenv and test artifacts."
|
|
|