Skip to content

Commit 0a77031

Browse files
committed
new travis ci test command that tries to run doctests on all supported
Linux CPython versions.
1 parent fab544a commit 0a77031

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
5-
- "3.2"
6-
- "3.3"
74
- "3.4"
85
- "3.5"
96
- "3.6"
@@ -15,4 +12,4 @@ python:
1512
install: "python setup.py develop"
1613

1714
# command to run tests
18-
script: "python setup.py test"
15+
script: "python -c 'import sys, doctest, Levenshtein; sys.exit(doctest.testmod(Levenshtein._levenshtein).failed > 0)'"

0 commit comments

Comments
 (0)