commit | 011d2a000c113e45204f10d6bb42f9b3a2b175a3 | [log] [tgz] |
---|---|---|
author | Dmitry <t.dmitry@gmail.com> | Tue Oct 25 23:24:40 2016 +0300 |
committer | GitHub <noreply@github.com> | Tue Oct 25 23:24:40 2016 +0300 |
tree | 22b42f26c3689c0f02c7efa6561ffb1c52201a41 | |
parent | 21d0ff091719fee9b99c829feb6992daeb5bdb7a [diff] [blame] |
Add travis CI (#1) Add Travis CI support Run flake8 on py27, py34, py35
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e73b474 --- /dev/null +++ b/.travis.yml
@@ -0,0 +1,12 @@ +language: python +sudo: false +os: + - linux +python: + - '2.7' + - '3.4' + - '3.5' +install: + - pip install -U pip + - pip install -U tox-travis +script: tox -v -epep8