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 0e262df commit 9f990aeCopy full SHA for 9f990ae
.travis.yml
@@ -0,0 +1,9 @@
1
+sudo: false
2
+language: python
3
+python:
4
+ - "2.7"
5
+ - "3.5"
6
+ - "3.6"
7
+install: "make init"
8
+script: "make ci"
9
+cache: pip
Makefile
@@ -29,6 +29,10 @@ update : clean-venv init versioneer.py
29
.PHONY : tests
30
tests: toxtest lint ;
31
32
+.PHONY : ci
33
+ci :
34
+ pytest
35
+
36
.PHONY : toxtest
37
toxtest : local/environment.sh tox.ini
38
source local/environment.sh && tox
0 commit comments