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 7437834 commit f0e163dCopy full SHA for f0e163d
.travis.yml
@@ -7,9 +7,17 @@ python:
7
- 3.3
8
9
script:
10
- - cd python2
11
- - python contemplate_koans.py about_asserts # add further koans here separated by spaces
+ - PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'`
+ - cd python$PYTHON_VER
12
- python _runner_tests.py
13
+# - python contemplate_koans.py # Run all the koans
14
+# - python contemplate_koans.py about_asserts about_none # Run a subset of
15
+# # koans
16
+#
17
+# Working through Python Koans in a fork? Want to use Travis CI to show which
18
+# koans you've passed? Then comment out one of the above "contemplate_koans"
19
+# lines above!
20
21
notifications:
22
email: false
23
0 commit comments