We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd286bd commit b39c358Copy full SHA for b39c358
.coveragerc
@@ -0,0 +1,7 @@
1
+# .coveragerc to control coverage.py
2
+[run]
3
+source = flickrapi
4
+omit =
5
+ setup.py
6
+ .tox/*
7
+ doc/*
tox.ini
@@ -8,6 +8,13 @@ commands =
8
coverage run -m py.test -v --cov flickrapi -r wsx
9
deps= .[test]
10
11
+[testenv:py36]
12
+commands =
13
+ python setup.py install
14
+ coverage run -m py.test --doctest-modules flickrapi tests -v -r wsx
15
+ coverage report
16
+deps= .[test]
17
+
18
[testenv:qa]
19
commands =
20
flake8
0 commit comments