-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.travis.yml
75 lines (67 loc) · 1.36 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
67
68
69
70
71
72
73
74
75
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- pip install --upgrade pip
- pip install tox-travis
# command to run tests, e.g. python setup.py test
script: time tox
# Globals
language: python
dist: focal
os: linux
osx_image: xcode13.2
jobs:
include:
- arch: amd64
python: 3.7
- arch: amd64
python: 3.8
- arch: amd64
python: 3.9
- arch: amd64
python: 3.10
- arch: amd64
python: 3.11
- arch: arm64
python: 3.7
- arch: arm64
python: 3.8
- arch: arm64
python: 3.9
- arch: arm64
python: 3.10
- arch: arm64
python: 3.11
- arch: ppc64le
python: 3.7
- arch: ppc64le
python: 3.8
- arch: ppc64le
python: 3.9
- arch: s390x
python: 3.7
- arch: s390x
python: 3.8
- arch: s390x
python: 3.9
- os: osx
language: generic
python: 3.7
env: PYTHON=3.7
- os: osx
language: generic
python: 3.8
env: PYTHON=3.8
- os: osx
language: generic
python: 3.9
env: PYTHON=3.9
- os: osx
language: generic
python: 3.10
env: PYTHON=3.10
- os: osx
language: generic
python: 3.11
env: PYTHON=3.11