diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c9161cd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - "2.7" +cache: pip +install: + - pip install -r requirements.txt +script: + - python test.py \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..2b3a463 --- /dev/null +++ b/test.py @@ -0,0 +1 @@ +print "Example test file" \ No newline at end of file