Permalink
Please sign in to comment.
Showing
with
15 additions
and 6 deletions.
- +2 −1 .gitignore
- +10 −4 .travis.yml
- +0 −1 requirements.txt
- +3 −0 requirements_dev.txt
@@ -1,13 +1,19 @@ | |||
sudo: false | |||
|
|||
language: python | |||
|
|||
python: | |||
- "3.6" | |||
python: 3.6 | |||
|
|||
install: "pip install -r requirements.txt" | |||
install: | |||
- pip install -r requirements.txt | |||
- pip install -r requirements_dev.txt | |||
|
|||
script: | |||
- flake8 | |||
- python manage.py test | |||
- coverage run ./manage.py test | |||
|
|||
after_success: | |||
- codecov | |||
|
|||
notifications: | |||
email: false |
@@ -1,4 +1,3 @@ | |||
django ~= 1.10.6 | |||
django-modeltranslation ~= 0.12.2 | |||
flake8 ~= 3.3.0 | |||
markdown ~= 2.6.9 |
@@ -0,0 +1,3 @@ | |||
flake8 ~= 3.3.0 | |||
coverage ~= 4.5.0 | |||
codecov ~= 2.0.0 |
0 comments on commit
4ec5ff4