Skip to content

Commit 29dc431

Browse files
committed
rudimentary .travis.yml which also ignores flake8 failures for now
1 parent a0d3711 commit 29dc431

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)