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 a0d3711 commit 29dc431Copy full SHA for 29dc431
.travis.yml
@@ -0,0 +1,29 @@
1
+# vim ft=yaml
2
+# travis-ci.org definition for python-patterns build
3
+language: python
4
+
5
+sudo: false
6
7
+python:
8
+ - "2.7"
9
+ - "3.3"
10
+ - "3.4"
11
+ - "3.5"
12
+ - "pypy"
13
+ - "pypy3"
14
15
+cache:
16
+ - pip
17
18
+install:
19
+ - travis_retry pip install -q coveralls codecov
20
+ - pip install flake8 # eventually worth
21
22
+script:
23
+ - PYTHONPATH=. nosetests -s -v --with-doctest --with-cov --cover-package . --logging-level=INFO -v .
24
+ # for now failure in flaking is ignored
25
+ - flake8 *py || echo "PEP8 the code"
26
27
+after_success:
28
+ - coveralls
29
+ - codecov
0 commit comments