diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f9bd1e2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +python: + - "2.7" + +services: + - echo "No services here" + +install: + - pip install pycodestyle + +script: + - echo "Checking pep8 compliance" + - pycodestyle . + +after_success: + - echo "Executing after_success, nothing here"