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.
1 parent 830b434 commit 4468094Copy full SHA for 4468094
.travis.yml
@@ -28,13 +28,17 @@ install:
28
- travis_retry pip install --upgrade pip
29
- travis_retry pip install --upgrade nose
30
- travis_retry pip install --upgrade setuptools
31
+- travis_retry pip install coveralls
32
- travis_retry pip install flake8
33
- travis_retry pip install tox>=1.9
34
- travis_retry tox -e $(echo py$TRAVIS_PYTHON_VERSION-me$MONGOENGINE | tr -d . | sed -e 's/pypypy/pypy/') -- -e test
35
36
before_script:
37
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e flake8; fi
38
39
+after_script:
40
+- coveralls --verbose
41
+
42
script:
43
- tox -e $(echo py$TRAVIS_PYTHON_VERSION-me$MONGOENGINE | tr -d . | sed -e 's/pypypy/pypy/') -- --with-coverage
44
0 commit comments