-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
52 lines (44 loc) · 917 Bytes
/
.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
os: linux
dist: focal
language: python
jobs:
include:
- name: python 3.7 (amd64)
python: "3.7"
arch: amd64
- name: python 3.8 (amd64)
python: "3.8"
arch: amd64
- name: python 3.9 (amd64)
python: "3.9"
arch: amd64
- name: python 3.10 (amd64)
python: "3.10"
arch: amd64
- name: python 3.7 (arm64)
python: "3.7"
arch: arm64
- name: python 3.8 (arm64)
python: "3.8"
arch: arm64
- name: python 3.9 (arm64)
python: "3.9"
arch: arm64
- name: python 3.10 (arm64)
python: "3.10"
arch: arm64
before_install:
- pip install -U pip build
- pip install -r test-requirements.txt
install:
- "python setup.py build_ext --inplace --with-cython"
# commands to run tests
script:
- PYTHONPATH=. py.test -v tests
notifications:
email: false
cache:
pip: true
branches:
only:
- master