We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cfe771 + d6b3b69 commit bfa2e93Copy full SHA for bfa2e93
.travis.yml
@@ -29,12 +29,15 @@ matrix:
29
env: DJANGO_VERSION=1.11
30
31
install:
32
+ - pip install coveralls
33
- pip install -r requirements.txt
34
- pip install -q Django==$DJANGO_VERSION
35
- pip install --upgrade setuptools wheel
36
- mysql -e 'create database django_prometheus_1;'
37
script:
38
- if [[ $TRAVIS_PYTHON_VERSION == "3.7" ]]; then black --check django_prometheus/; fi
- - python setup.py test
39
+ - coverage run --source=django_prometheus setup.py test
40
- python setup.py sdist bdist_wheel
41
- cd django_prometheus/tests/end2end && PYTHONPATH=../../.. python manage.py test
42
+after_success:
43
+ - coveralls
0 commit comments