From 939acb745721f043fa9b56ea66c42b4484fbd1dd Mon Sep 17 00:00:00 2001 From: Will Roberts Date: Mon, 9 May 2016 13:57:35 +0200 Subject: [PATCH] .travis.yml: fix shell syntax error --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 87de8e3..48851ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - "3.3" - "3.4" # command to install dependencies -install: "pip install . coverage<4 coveralls" +install: "pip install . 'coverage<4' coveralls" # command to run tests script: coverage run --source=pytimeparse setup.py test