aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-12-02 22:36:51 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-12-02 22:36:51 +0100
commit35ed57410f1a645f640a08aa989cd01c3166f210 (patch)
tree0dc645128fd2b32441d4f29de85b2d760c15fcf0 /.gitlab-ci.yml
parentb6ce2b43124c716647443054631f7c8a1e0b919f (diff)
downloadfuzzycat-35ed57410f1a645f640a08aa989cd01c3166f210.tar.gz
fuzzycat-35ed57410f1a645f640a08aa989cd01c3166f210.zip
use pipenv setup
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
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