forked from CZ-NIC/pyoidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (44 loc) · 889 Bytes
/
.travis.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
language: python
dist: xenial
sudo: required
services:
docker
python: 3.6
addons:
apt:
packages:
- libffi-dev
- libsasl2-dev
- libldap2-dev
hosts:
op-test
rp-test
op
install:
- pip install tox
env:
- TOXENV=py36
- TOXENV=quality
- TOXENV=docs
script:
- tox -e $TOXENV
matrix:
include:
# Add python 3.7
- python: 3.7
env: TOXENV=py37
# Add python 3.8
- python: 3.8
env: TOXENV=py38
- install:
- docker-compose -f docker/docker-compose.yml up -d
script:
- docker build docker/integration_tests -t oidctest-local
- docker run --net=host --name=oidctest-it -d oidctest-local
- docker container start oidctest-it -a
- language: ruby
rvm: 2.4.1
install: gem install awesome_bot
script: awesome_bot CHANGELOG.md
notifications:
email: false