summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMason Donahue <masond+github@gmail.com>2014-08-20 21:58:56 -0500
committerMason Donahue <masond+github@gmail.com>2014-08-20 21:58:56 -0500
commit2fb37c943356ba1cdaa46b7b051e97638a8c8e4c (patch)
treec7bf08f00ee3d3fa6dbff7a89c77eba382a79a2d /.travis.yml
parent60d97cfa5e764b9cdcb505a7b9cc4df3270e5d9f (diff)
downloadonionshare-2fb37c943356ba1cdaa46b7b051e97638a8c8e4c.tar.gz
onionshare-2fb37c943356ba1cdaa46b7b051e97638a8c8e4c.zip
Add initial .travis.yml for CI
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..c299e1b0
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,12 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+ - "3.2"
+ - "3.3"
+# command to install dependencies
+before_install: "sudo apt-get install -y build-essential fakeroot python-all python-stdeb python-flask python-stem python-qt4"
+install: "pip install -r requirements.txt"
+# command to run tests
+script: nosetests test
+