forked from man-group/pytest-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
executable file
·66 lines (60 loc) · 1.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
language: sh
os:
- windows
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
jobs:
include:
- name: "Python 2.7 on Windows"
python: "2.7"
before_install:
- set -e
- . install.sh
- install_windows_make
- install_windows_py27
- init_venv python
- name: "Python 3.5 on Windows"
python: "3.5"
before_install:
- set -e
- . install.sh
- install_windows_make
- install_windows_py35
- init_venv python
- name: "Python 3.6 on Windows"
python: "3.6"
before_install:
- set -e
- . install.sh
- install_windows_make
- install_windows_py36
- init_venv python
- name: "Python 3.7 on Windows"
python: "3.7"
before_install:
- set -e
- . install.sh
- install_windows_make
- install_windows_py37
- init_venv python
install:
- python --version
- make develop
before_script:
- export DEBUG=1
- export SERVER_FIXTURES_JENKINS_WAR=
# Select all packages with the Windows classifier
- export PACKAGES=$(./foreach.sh --quiet 'grep -q Windows setup.py && echo $PKG || true')
script:
- make test-ci
after_script:
- bash -c "! compgen -G 'FAILED-*'"
cache:
directories:
- ~/AppData/Local/pip/Cache
git:
depth: false
submodules: false