forked from UWPCE-Python-Course-2-Materials/py310_sp2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml.docker
71 lines (57 loc) · 1.67 KB
/
.gitlab-ci.yml.docker
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
68
69
70
71
---
# 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 for the testing environment
- pip install -U pip setuptools
- pip install -U tox
.test_script: &test_script
script:
- tox
# OR if you don't use tox:
# - pytest
# Run in different environments
py36:
image: "python:3.6"
<<: *test_script
py37:
image: "python:3.7"
<<: *test_script
py38:
image: "python:3.8"
<<: *test_script
py39:
image: "python:3.9"
<<: *test_script
docs:
script:
- tox -e docs
# 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