diff options
-rw-r--r-- | .travis.yml | 10 | ||||
-rw-r--r-- | requirements.txt | 1 | ||||
-rw-r--r-- | tests/__init__.py | 0 |
3 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3e8d0f9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "3.0" + - "3.1" + - "3.2" + - "3.3" +# command to install dependencies +install: "pip install -r requirements.txt --use-mirrors" +# command to run tests +script: python -m unittest tests diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6d4c318 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +requests==1.1.0
\ No newline at end of file diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/__init__.py |