-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
59 lines (54 loc) · 1.12 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
language: python
dist: jammy
#arch:
# - amd64 # Default
# - arm64 # No Python images yet on xenial
matrix:
fast_finish: true
include:
- python: 'pypy3'
- python: '3.13'
- python: '3.13'
dist: noble
- python: '3.13'
dist: jammy
- python: '3.13'
dist: focal
- python: '3.12'
- python: '3.12'
dist: focal
- python: '3.12'
dist: bionic
- python: '3.11'
- python: '3.11'
dist: focal
- python: '3.11'
dist: bionic
- python: '3.10'
- python: '3.10'
dist: focal
- python: '3.10'
dist: bionic
- python: '3.9'
- python: '3.9'
dist: bionic
- python: '3.8'
- python: '3.7'
- python: 'nightly'
- python: '3.13-dev'
- python: '3.12-dev'
- python: '3.11-dev'
- python: '3.10-dev'
- python: '3.9-dev'
- python: '3.8-dev'
- python: '3.7-dev'
install:
- pip install -U pytest tqdm
script:
- echo "$TRAVIS_EVENT_TYPE"
- echo "$DIST"
- lsb_release -a
- python --version --version
- python ./test.py
- pytest
- python -m pytest -v -x -W always