-
Notifications
You must be signed in to change notification settings - Fork 26
/
.travis.yml
49 lines (43 loc) · 1.01 KB
/
.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
language: python
sudo: false
cache:
- pip
dist: xenial
before_install:
- set -e
install:
- bash .install_deps
- pip install codecov
script:
- pytest --cov=samlauthenticator --cov-report term-missing
after_success:
- codecov
matrix:
fast_finish: true
include:
- name: "Python 3.8 Oldest Dependencies"
python: "3.8"
env: DEPS_VERSION=AFTER38
- name: "Python 3.8 Latest Dependencies"
python: "3.8"
env: DEPS_VERSION=NEW
- name: "Python 3.7 Oldest Dependencies"
python: "3.7"
env: DEPS_VERSION=OLD
- name: "Python 3.7 Latest Dependencies"
python: "3.7"
env: DEPS_VERSION=NEW
- name: "Python 3.6 Oldest Dependencies"
python: "3.6"
env: DEPS_VERSION=OLD
- name: "Python 3.6 Latest Dependencies"
python: "3.6"
env: DEPS_VERSION=NEW
- name: "Python Nightly Oldest Dependencies"
python: nightly
env: DEPS_VERSION=AFTER38
- name: "Python Nightly Latest Dependencies"
python: nightly
env: DEPS_VERSION=NEW
allow_failures:
- python: nightly