This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
nielsperetzke
/
healthchecks
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
32
Wiki
Activity
Browse Source
Let's try coveralls.io
pull/7/head
Pēteris Caune
9 years ago
parent
89bb89c5f3
commit
1374b43c93
2 changed files
with
7 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+6
-2
.travis.yml
+ 1
- 0
.gitignore
View File
@ -1,3 +1,4 @@
__pycache__/
.coverage
local_settings.py
static-collected
+ 6
- 2
.travis.yml
View File
@ -1,8 +1,12 @@
language
:
python
python:
-
"2.7"
-
"3.4"
install
:
"pip install -r requirements.txt"
install:
-
pip install -r requirements.txt
-
pip install coveralls
addons:
postgresql
:
"9.4"
script:
-
python manage.py test hc.api hc.front
-
coverage run --source=hc manage.py test
after_success
:
coveralls
Write
Preview
Loading…
Cancel
Save