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 3bfff38 commit a0c13e9Copy full SHA for a0c13e9
.travis.yml
@@ -4,6 +4,6 @@ python:
4
- "2.7"
5
- "3.5"
6
- "3.6"
7
-install: "make init"
+install: "make ci-init"
8
script: "make ci"
9
cache: pip
Makefile
@@ -33,6 +33,11 @@ update :
33
.PHONY : tests
34
tests: lint toxtest ;
35
36
+.PHONY : ci-init
37
+ci-init :
38
+ pip install pipenv
39
+ pipenv install
40
+
41
.PHONY : ci
42
ci :
43
pytest -m "not ratelimit"
0 commit comments