From deb8a67f91a3b3a6c23cc74332335312da718f9e Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 3 Aug 2019 16:46:53 -0300 Subject: [PATCH] gitlab-ci.yml: remove tox from main pipeline tox still stays as a "dev-oriented" testing tool. --- .gitlab-ci.yml | 3 ++- tox.ini | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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