From b0f5e71bddc76d1af7b9778eea2d42af35a4291f Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Thu, 24 May 2018 13:12:19 -0400 Subject: [PATCH 1/4] Fix travis.yml --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f26b9f40..417c7dd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: python - python: - - "3.6" - script: - - python -m pytest +python: + - "3.6" +script: + - python -m pytest From 9731dce58111856ffa06b10e240695648977724a Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Thu, 24 May 2018 13:15:07 -0400 Subject: [PATCH 2/4] Add sass dependency to travis --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 417c7dd9..9da8aeec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ language: python python: - "3.6" +before_install: + - gem install sass script: - python -m pytest From e49d0be9b1f075320c5dda99d813d11a81efcb7b Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Thu, 24 May 2018 13:20:38 -0400 Subject: [PATCH 3/4] add clean target to Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ab883082..e4fb2f72 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,5 @@ test: python -m pytest + +clean: + find static/assets -type f |grep -v .gitignore | xargs rm From decd5205efefe359e5a4071fefa857afc68154fa Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Thu, 24 May 2018 13:23:30 -0400 Subject: [PATCH 4/4] Install npm modules too --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 9da8aeec..c5d4cc1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,6 @@ python: - "3.6" before_install: - gem install sass + - npm install script: - python -m pytest