diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5253583..c8c07a56 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,23 +8,20 @@ cache: - .cache/pip stages: - - build - static-analysis - test -build: - stage: build - script: - - python --version - - pip install -r requirements.txt - static-analysis: stage: static-analysis allow_failure: true script: + - python --version + - pip install -r requirements.txt - pylint opendc test: stage: test script: + - python --version + - pip install -r requirements.txt - pytest opendc |
