diff options
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 44126ded9..000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -image: pythondiscord/bot-ci:latest - -variables: - PIPENV_CACHE_DIR: "/root/.cache/pipenv" - PIP_CACHE_DIR: "/root/.cache/pip" - -cache: - paths: - - "/root/.cache/pip/" - - "/root/.cache/pipenv/" - - "/usr/local/lib/python3.6/site-packages/" - -stages: - - test - - build - -test: - tags: - - docker - - stage: test - - script: - - ls /root/.cache/ - - pipenv install --dev --deploy --system - - python -m flake8 - - ls /root/.cache/ - |