From 5ca3b0540294217f97cb5ff84cb419e81b4d3f08 Mon Sep 17 00:00:00 2001 From: Juan Pablo Amoroso Date: Fri, 20 Mar 2020 14:23:49 -0300 Subject: [PATCH] Moved lint step to before_script. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1efc95a..89aa569 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,9 @@ install: - pip install pipenv - make install -script: +before_script: - make lint + +script: - make test - make test_notebook