gitlab-ci.yml: remove tox from main pipeline

tox still stays as a "dev-oriented" testing tool.
This commit is contained in:
Luna 2019-08-03 16:46:53 -03:00
parent 27ec018bf5
commit deb8a67f91
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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