diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-08-21 05:40:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-21 05:40:31 -0500 |
commit | 1e9bf4fea9f7c1563e3b69a7d0eed8c9f1569ccb (patch) | |
tree | b485906afacd26c6c99b5ebe9c5f053fb88ffbe3 | |
parent | 8da759898768311ad3a67a1963d6132f138469a1 (diff) | |
parent | 0848e5cd2ea84db0e88b40cdaa743a009a99b70a (diff) | |
download | pyparsing-git-1e9bf4fea9f7c1563e3b69a7d0eed8c9f1569ccb.tar.gz |
Merge pull request #17 from hugovk/run-tests-on-travis-ci
Run unit tests on Travis CI
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..09dd8c2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +sudo: false + +language: python + +matrix: + include: + - python: 2.7 + - python: 3.4 + - python: 3.5 + - python: 3.6 + - python: 3.7 + dist: xenial + sudo: true + fast_finish: true + +script: + - python unitTests.py |