-
Notifications
You must be signed in to change notification settings - Fork 156
/
.travis.yml
46 lines (36 loc) · 824 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
# https://travis-ci.org/orbingol/NURBS-Python
dist: bionic
sudo: false
language: python
cache: pip
# branches to build
branches:
only:
- master # latest version
- 5.x-dev # v5.x development
- 5.x # v5.x series
- 4.x # v4.x series
- 3.x # v3.x series
- 2.x # v2.x series
- travisci-testing # Travis-CI testing
# build matrix
matrix:
include:
- python: 2.7
env: TOXENV=py27,test,codecov
- python: 3.5
env: TOXENV=py35,test
- python: 3.6
env: TOXENV=py36,test
- python: 3.7
env: TOXENV=py37,test,codecov
- name: "Performance testing on Python 3.6"
python: 3.6
env: TOXENV=py36,performance-full
if: branch = master OR branch = travisci-testing
# install packages
install:
- pip install tox
# run tox
script:
- tox