diff options
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d838ef2..60b11b4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,12 +7,10 @@ stages: before_script: - pip3 install --upgrade pip - - pip3 install pytest tests: stage: test script: - - python3 --version - - pipenv install - - pipenv run pytest -vv -s - + - python3 --version && pipenv --version + - make deps + - make test |