diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-04-15 01:19:50 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-04-15 01:19:50 +0200 |
commit | cd5aff2602b944c95d2ed76f9f916ef0427d0013 (patch) | |
tree | d5e5e1c5dc47ebbae556e8a3a3cf7fed5417e677 | |
parent | d75e62093fab07078e47fa9c967570fae1afa0f5 (diff) | |
download | fuzzycat-cd5aff2602b944c95d2ed76f9f916ef0427d0013.tar.gz fuzzycat-cd5aff2602b944c95d2ed76f9f916ef0427d0013.zip |
ci: reuse makefile
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d838ef2..f2cba3f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,12 +7,11 @@ 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 |