We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd7df6 commit 73d7845Copy full SHA for 73d7845
Makefile
@@ -23,12 +23,13 @@ check:
23
@PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \
24
$(MAKE) check-$$PYTHON_VERSION
25
26
-#: Tests for Python 2.7, 3.3, 3.4 and 3.5
27
-check-2.7 check-3.3 check-3.4 check-3.5: pytest
+#: Tests for Python 2.7, 3.3 and 3.4
+check-2.7 check-3.3 check-3.4: pytest
28
$(MAKE) -C test $@
29
30
-#: Tests for Python 3.2 - pytest doesn't work here
31
-check-3.2:
+#: Tests for Python 3.2 and 3.5 - pytest doesn't work here
+# Or rather 3.5 doesn't work not on Travis
32
+check-3.2 check-3.5:
33
34
35
#:Tests for Python 2.6 (doesn't have pytest)
0 commit comments