-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
67 lines (57 loc) · 1.77 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# image: "python:2.7"
# Pick zero or more services to be used on all builds.
# Only needed when using a docker container to run your tests in.
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service
#services:
# - mysql:latest
# - redis:latest
# - postgres:latest
#variables:
# POSTGRES_DB: database_name
# Cache packages in between builds
cache:
paths:
- vendor/python
# This is a basic example for a packages or script which doesn't use
# services such as redis or postgres
before_script:
- python -v # Print out Python version for debugging
# Setup git
- apt-get install git
- git config --global user.email "[email protected]"
- git config --global user.name "Your Name"
# Install dependencies of your package and the testing environment
- pip install -r requirements.txt
# - pip install -r test-requirements.txt
# Run in different environments
py34:
image: "python:3.4"
script:
- python setup.py test
py37:
image: "python:3.7"
script:
- python setup.py test
docs:
image: "python:3.7"
before_script:
- pip install .[docs]
script:
- python setup.py docs
lint:
image: "python:3.7"
before_script:
- pip install .[lint]
script:
- flake8 setup.py winternitz tests
- isort --recursive --check-only --dif
# This deploy job uses a simple deploy flow to Heroku, other providers, e.g. AWS Elastic Beanstalk
# are supported too: https://github.com/travis-ci/dpl
#deploy:
# type: deploy
# environment: production
# script:
# - python setup.py
# - dpl --provider=heroku --app=$HEROKU_APP_NAME --api-key=$HEROKU_PRODUCTION_KEY