diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-12-02 22:36:51 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-12-02 22:36:51 +0100 |
commit | 35ed57410f1a645f640a08aa989cd01c3166f210 (patch) | |
tree | 0dc645128fd2b32441d4f29de85b2d760c15fcf0 | |
parent | b6ce2b43124c716647443054631f7c8a1e0b919f (diff) | |
download | fuzzycat-35ed57410f1a645f640a08aa989cd01c3166f210.tar.gz fuzzycat-35ed57410f1a645f640a08aa989cd01c3166f210.zip |
use pipenv setup
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c46b9ee..e6043ec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,12 +4,12 @@ stages: - test before_script: - - pip install --upgrade pip - - pip install pytest + - pip3 install --upgrade pip + - pip3 install pytest tests: stage: test script: - - python setup.py develop - - pytest + - pipenv install + - pipenv run pytest |