We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bf2cfa commit 9f86de6Copy full SHA for 9f86de6
4 files changed
β.travis.ymlβ
@@ -13,4 +13,4 @@ python:
13
before_install:
14
- pip install -r test/requirements.txt
15
script:
16
- - nosetests test
+ - make test
βMakefileβ
@@ -0,0 +1,4 @@
1
+all: test
2
+
3
+test:
4
+ bash test.sh
βtest.shβ
@@ -0,0 +1,2 @@
+cd test
+nosetests
βtest/requirements.txtβ
@@ -0,0 +1 @@
+nose
0 commit comments