diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-06-25 13:41:01 +0200 |
|---|---|---|
| committer | Georgios Andreadis <info@gandreadis.com> | 2020-06-25 13:41:01 +0200 |
| commit | 4a2916f6dc28dc0eb9aaa49fee3e75b1f503ee03 (patch) | |
| tree | a44f89a55970565d3ed6c1f1ff97e25da0839df5 /.gitlab-ci.yml | |
| parent | c60b4ad9f2fc987121c6de8489dc073ae989dcde (diff) | |
Change CI setup
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 |
