aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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