From 58cadfda2da3b9318b9ea7d5fc539fcaab320071 Mon Sep 17 00:00:00 2001 From: Rahul Bhattacharjee Date: Mon, 16 Oct 2017 21:02:18 +0530 Subject: [PATCH 1/2] travis added --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..13d7288 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "3.5" +# command to install dependencies +install: + - pip install -r requirements.txt +# command to run tests +script: + - python config.py From 7037d66c1a97d14bef1752daa3383948046e0644 Mon Sep 17 00:00:00 2001 From: Rahul Bhattacharjee Date: Mon, 16 Oct 2017 21:12:40 +0530 Subject: [PATCH 2/2] fix typo in .travis.yml --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13d7288..c3a3db8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,6 @@ language: python python: - "3.5" -# command to install dependencies -install: - - pip install -r requirements.txt # command to run tests script: - - python config.py + - python run.py