diff options
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 149df37..a572489 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,8 +7,10 @@ before_script: variables: LC_ALL: "C.UTF-8" LANG: "C.UTF-8" + PIPENV_VENV_IN_PROJECT: "true" test_python: script: - pipenv install --dev --deploy - - pipenv run make test + - make test + - make lint |