mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-23 11:56:36 +11:00
Fixed Travis
This commit is contained in:
parent
81f9718edc
commit
6255885bea
1 changed files with 8 additions and 5 deletions
13
.travis.yml
13
.travis.yml
|
@ -7,21 +7,24 @@ python:
|
|||
- 3.6
|
||||
|
||||
env:
|
||||
- DJANGO: django>=1.8,<1.9
|
||||
- DJANGO: django>=1.9,<1.10
|
||||
- DJANGO: django>=1.10,<1.11
|
||||
- DJANGO: django>=1.11,<2.0
|
||||
- DJANGO: django>=2.0
|
||||
|
||||
matrix:
|
||||
exclude:
|
||||
- python: "2.7"
|
||||
env: DJANGO=2.0.*
|
||||
|
||||
before_install:
|
||||
- pip install codecov
|
||||
- coverage erase
|
||||
|
||||
install:
|
||||
- pip install $DJANGO
|
||||
- pip install -e .
|
||||
- pip install -e .[standalone]
|
||||
|
||||
script:
|
||||
- coverage run runtests.py
|
||||
- coverage run --append runtests.py
|
||||
|
||||
after_success:
|
||||
- codecov
|
||||
|
|
Loading…
Reference in a new issue