Commit 665b99e1 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Delete pyc earlier

parent afaaf33b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ py_exe=python${py_version}

rm -Rf .env
rm -Rf build
find -name '*.pyc' -delete

VIRTUALENV="${py_exe} -m venv"
${VIRTUALENV} -h > /dev/null || VIRTUALENV="virtualenv --no-setuptools -p ${py_exe}"
@@ -19,7 +20,6 @@ if test -f requirements.txt; then
  pip install -r requirements.txt
fi

find -name '*.pyc' -delete
${py_exe} setup.py install

if test -d test; then