From 546981fe16cbbbbe99792051864f196af09f2fd6 Mon Sep 17 00:00:00 2001 From: yomguy Date: Sun, 7 Oct 2012 00:40:11 +0200 Subject: [PATCH] fix requirements --- .travis.yml | 4 +++- requirements.txt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.travis.yml b/.travis.yml index 929656b..892153f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,7 @@ python: - "2.6" - "2.7" - "3.2" +# command to install dependencies +install: "pip install -r requirements.txt --use-mirrors" # command to run tests -script: tests/alltests.py +script: python tests/alltests.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 -- 2.39.5