aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2014-01-04 19:19:18 +0100
committerMatěj Cepl <mcepl@redhat.com>2014-01-04 19:19:18 +0100
commit0f9f919c206711b767029d1aa59ae979bbb69d51 (patch)
tree72fe207bdc4774e3ddf155cf253f4c556da12adc /.travis.yml
parente67efc76fd37ae449cbb507fd0ef0e264e11fc36 (diff)
downloadgg_scraper-0f9f919c206711b767029d1aa59ae979bbb69d51.tar.gz
Make at least unittests running with Python 2.7
Add support for Travis-CI Fixes #283
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..57f70f9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+ - "pypy"
+ - "3.2"
+ - "3.3"
+before_script:
+ - "pip install --use-mirrors ."
+script: PYTHONPATH=$PYTHONPATH:. python test/test_html2text.py -v