]> git.parisson.com Git - deefuzzer.git/commitdiff
add travis tests
authorGuillaume Pellerin <yomguy@parisson.com>
Fri, 6 Dec 2013 08:36:22 +0000 (09:36 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Fri, 6 Dec 2013 08:36:22 +0000 (09:36 +0100)
.travis.yml [new file with mode: 0644]
requirements.txt [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..4bc018b
--- /dev/null
@@ -0,0 +1,12 @@
+language: python
+python:
+  - "2.6"
+  - "2.7"
+# command to install dependencies
+install: 
+ - "pip install -r requirements.txt --use-mirrors"
+
+# command to run tests
+script:
+ - "python setup.py install"
+# - "python tests/testcomponent.py"
diff --git a/requirements.txt b/requirements.txt
new file mode 100644 (file)
index 0000000..49fe098
--- /dev/null
@@ -0,0 +1 @@
+setuptools