We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8338c54 commit b77072eCopy full SHA for b77072e
.travis.yml
@@ -1,9 +1,8 @@
1
language: python
2
# command to install dependencies
3
install:
4
- - pip install tox
5
- pip install coveralls
6
- pip install -q -r requirements.txt
7
# command to run tests
8
-script: tox
+script: make test
9
after_success: coveralls
Makefile
@@ -6,7 +6,7 @@ BOWER=$(CURDIR)/node_modules/.bin/bower
default: coverage
test-py:
- coverage run test/runtests.py
+ tox
10
11
test-js: node_modules
12
$(KARMA) start test/karma.conf.js --single-run \
requirements.txt
@@ -2,3 +2,4 @@ django>=1.4
coverage>=3.6
nose>=1.3.0
django-nose>=1.1
+tox>=1.6
0 commit comments