From f69a46d4bb971d292b0199ede8f24459f65e13e3 Mon Sep 17 00:00:00 2001 From: shashank7200 Date: Sun, 16 Jul 2017 21:09:02 +0530 Subject: [PATCH 1/3] added travis config file --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..833a33c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - "2.7" +cache: pip +install: + - pip install -r requirements.txt +script: + - python build.py & python -m SimpleHTTPServer && fg From 29d43995382ac2a706c0281958659d447f6cc1d1 Mon Sep 17 00:00:00 2001 From: shashank7200 Date: Mon, 17 Jul 2017 15:23:38 +0530 Subject: [PATCH 2/3] intialized a test file --- test.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.py 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 From 5249f6844c6d2cbb684c61e67be4de3e1efa8a0b Mon Sep 17 00:00:00 2001 From: shashank7200 Date: Mon, 17 Jul 2017 15:24:08 +0530 Subject: [PATCH 3/3] minor changes --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 833a33c..c9161cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,4 @@ cache: pip install: - pip install -r requirements.txt script: - - python build.py & python -m SimpleHTTPServer && fg + - python test.py \ No newline at end of file