-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (37 loc) · 749 Bytes
/
.travis.yml
File metadata and controls
37 lines (37 loc) · 749 Bytes
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
language: python
dist: jammy
install:
- pip install -U tox
- pip install -e .
matrix:
include:
- python: "3.6"
dist: "xenial"
env:
- TOX_ENV=py36
- python: "3.7"
dist: "xenial"
env:
- TOX_ENV=py37
install:
- pip install -U tox importlib-metadata
- pip install -e .
- python: "3.8"
dist: "xenial"
env:
- TOX_ENV=py38
- python: "3.9"
dist: "xenial"
env:
- TOX_ENV=py39
- python: "3.10"
env:
- TOX_ENV=py310
install:
- pip uninstall -y setuptools
- pip install -U tox setuptools wheel
- pip install -e .
- python: "3.11"
env:
- TOX_ENV=py311
script: tox -e $TOX_ENV