diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-08-09 16:47:49 +0300 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-08-09 16:47:49 +0300 |
commit | 0848e5cd2ea84db0e88b40cdaa743a009a99b70a (patch) | |
tree | b485906afacd26c6c99b5ebe9c5f053fb88ffbe3 | |
parent | 8da759898768311ad3a67a1963d6132f138469a1 (diff) | |
download | pyparsing-git-0848e5cd2ea84db0e88b40cdaa743a009a99b70a.tar.gz |
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 |