diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6dc2461..930e60a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,4 +20,5 @@ tests: - ls - cp config.ci.py config.py - pipenv run ./manage.py migrate - - tox + - pipenv run pyflakes run.py litecord/ + - pipenv run pytest tests diff --git a/tox.ini b/tox.ini index 8d9618f..1630629 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,5 @@ envlist = py3.7 deps = -rrequirements.txt commands = pipenv install --dev - pyflakes run.py - pyflakes litecord/ - pytest tests + pipenv run pyflakes run.py litecord/ + pipenv run pytest tests