summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2013-05-29 15:18:04 -0500
committerDavid Beazley <dave@dabeaz.com>2013-05-29 15:18:04 -0500
commitea655a3a8632824f5e0fb2319f096d5f9579bff7 (patch)
tree76d85e2a0ca5b55df4f8bef19351487501e548eb /.travis.yml
parentd1d655989f9a0fe3fe703bb901f7512340ef6539 (diff)
downloadply-ea655a3a8632824f5e0fb2319f096d5f9579bff7.tar.gz
Added Travis-CI
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..99f543c
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,9 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+ - "3.2"
+ - "3.3"
+install:
+ - "pip install . --use-mirrors"
+script: "cd test && python testlex.py && python testyacc.py"