forked from data61/anonlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (36 loc) · 853 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
dist: xenial # required for Python >= 3.7
language: python
sudo: false
cache:
directories:
- "$HOME/.cache/pip"
python:
- nightly
- pypy3
env:
install:
- travis_retry pip install -r requirements.txt
- travis_retry python setup.py sdist bdist_wheel
- travis_retry pip install -e .[test]
script:
- pytest --cov=anonlink -W ignore::DeprecationWarning
- codecov
jobs:
fast_finish: true
allow_failures:
- python: "nightly"
- python: "pypy3"
- name: "Extended Size 100K"
include:
# No matrix support in Stages
# Stages with the same name get run in parallel. Jobs within a stage can also be named.
- stage: test
name: "Extended Size 10K"
python: "3.7"
env:
- INCLUDE_10K=1
- stage: test
name: "Extended Size 100K"
python: "3.7"
env:
- INCLUDE_100K=1