forked from georgemarshall/django-cryptography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (33 loc) · 752 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
---
language: python
sudo: false
cache: pip
matrix:
allow_failures:
- python: nightly
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
exclude:
- python: "3.5"
env: DJANGO="Django>=3.0,<3.1"
- python: "3.5"
env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "nightly"
env:
- DJANGO="Django>=1.11,<1.12"
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=3.0,<3.1"
- DJANGO="https://github.com/django/django/archive/master.tar.gz"
before_install:
- pip install --quiet codecov
install:
- pip install --quiet --pre $DJANGO
- python setup.py -q install
script:
- coverage run setup.py -v test
after_success:
- codecov