From: Guillaume Pellerin Date: Fri, 6 Dec 2013 08:36:22 +0000 (+0100) Subject: add travis tests X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=bedb1ff092c445f69a74e4e5ddf65cc2dcfb7d11;p=deefuzzer.git add travis tests --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4bc018b --- /dev/null +++ b/.travis.yml @@ -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 index 0000000..49fe098 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +setuptools