From 394eb30f60fd907ef91b21b04eeed0919c5a18dc Mon Sep 17 00:00:00 2001 From: Santhosh Kulasekar Date: Tue, 17 Apr 2018 12:44:02 -0400 Subject: [PATCH] Create .travis.yml --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .travis.yml 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"