summaryrefslogtreecommitdiff
path: root/api/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to 'api/.gitlab-ci.yml')
-rw-r--r--api/.gitlab-ci.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/api/.gitlab-ci.yml b/api/.gitlab-ci.yml
deleted file mode 100644
index d80ba836..00000000
--- a/api/.gitlab-ci.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-image: "python:3.8"
-
-variables:
- PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
-
-cache:
- paths:
- - .cache/pip
-
-stages:
- - static-analysis
- - test
-
-static-analysis:
- stage: static-analysis
- script:
- - python --version
- - pip install -r requirements.txt
- - pylint opendc
-
-test:
- stage: test
- script:
- - python --version
- - pip install -r requirements.txt
- - pytest opendc