mirror of
https://github.com/quantum5/django-csp-advanced.git
synced 2025-04-25 03:31:58 -04:00
Add travis testing.
This commit is contained in:
parent
8fa410d6fd
commit
cdfc538b8f
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
- pypy
|
||||
env:
|
||||
- DJANGO_VERSION=>=1.8,<1.9
|
||||
- DJANGO_VERSION=>=1.9,<1.10
|
||||
- DJANGO_VERSION=>=1.10,<1.11
|
||||
- DJANGO_VERSION=>=1.11,<2
|
||||
install:
|
||||
- pip install . codecov Django$DJANGO_VERSION
|
||||
script:
|
||||
- coverage run --source=csp_advanced testproject/manage.py test
|
||||
after_script:
|
||||
- codecov
|
Loading…
Reference in a new issue