diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-12-28 23:18:02 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-12-28 23:18:02 -0800 |
commit | 1d004d91519c52a2987a351d38da6322b6b6619f (patch) | |
tree | b593866ad693577c3240cc3f3286b2f3f7775465 | |
parent | 750ebfc3b08426b548edbf096a7bb657ef257638 (diff) | |
download | chocula-1d004d91519c52a2987a351d38da6322b6b6619f.tar.gz chocula-1d004d91519c52a2987a351d38da6322b6b6619f.zip |
gitlab CI: small tweaks
-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 |