Skip to content

Commit b77072e

Browse files
committed
Update make test to run through tox
1 parent 8338c54 commit b77072e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: python
22
# command to install dependencies
33
install:
4-
- pip install tox
54
- pip install coveralls
65
- pip install -q -r requirements.txt
76
# command to run tests
8-
script: tox
7+
script: make test
98
after_success: coveralls

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ BOWER=$(CURDIR)/node_modules/.bin/bower
66
default: coverage
77

88
test-py:
9-
coverage run test/runtests.py
9+
tox
1010

1111
test-js: node_modules
1212
$(KARMA) start test/karma.conf.js --single-run \

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ django>=1.4
22
coverage>=3.6
33
nose>=1.3.0
44
django-nose>=1.1
5+
tox>=1.6

0 commit comments

Comments
 (0)