From f2deba627cc25e60130fa819fb9ccfe1c718156d Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Oct 2018 18:47:14 +0300 Subject: [PATCH] .travis.yml: Run pip install as script Basically for now there are no tests so I just want to just check that requirements.txt is correct and that all dependencies can be installed. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1f5cb3f..37747fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ python: - "3.5" - "3.6" - "3.7" -install: +script: - pip install -r requirements.txt # vim: ts=2 sw=2 et