Ignore root-level venv for testing

This commit is contained in:
Joshua Boniface 2021-06-23 02:15:49 -04:00
parent e91a597591
commit f0db631947
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.pyc *.pyc
*.tmp *.tmp
*.swp *.swp
venv/

2
lint
View File

@ -7,7 +7,7 @@ fi
flake8 \ flake8 \
--ignore=E501 \ --ignore=E501 \
--exclude=api-daemon/migrations/versions,api-daemon/provisioner/examples --exclude=venv,api-daemon/migrations/versions,api-daemon/provisioner/examples
ret=$? ret=$?
if [[ $ret -eq 0 ]]; then if [[ $ret -eq 0 ]]; then
echo "No linting issues found!" echo "No linting issues found!"