Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gitlab-ci-yml/Python.gitlab-ci.yml')
-rw-r--r--vendor/gitlab-ci-yml/Python.gitlab-ci.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/gitlab-ci-yml/Python.gitlab-ci.yml b/vendor/gitlab-ci-yml/Python.gitlab-ci.yml
deleted file mode 100644
index a2882a5407d..00000000000
--- a/vendor/gitlab-ci-yml/Python.gitlab-ci.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is a template, and might need editing before it works on your project.
-image: python:latest
-
-before_script:
- - python -V # Print out python version for debugging
-
-test:
- script:
- - python setup.py test
- - pip install tox flake8 # you can also use tox
- - tox -e py36,flake8
-
-run:
- script:
- - python setup.py bdist_wheel
- # an alternative approach is to install and run:
- - pip install dist/*
- # run the command here
- artifacts:
- paths:
- - dist/*.whl
-
-pages:
- script:
- - pip install sphinx sphinx-rtd-theme
- - cd doc ; make html
- - mv build/html/ ../public/
- artifacts:
- paths:
- - public
- only:
- - master