From 397860fc33e55075c1b6658758d0f49eee867b05 Mon Sep 17 00:00:00 2001 From: deyk Date: Mon, 17 Oct 2016 09:45:41 -0700 Subject: [PATCH] Use YAML to install dependencies :P --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5222b8a..fc232a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ python: - "3.5" # command to install dependencies install: - pip install -r test-requirements.txt - python setup.py develop + - pip install -r test-requirements.txt + - pip install . # command to run tests script: nosetests --with-coverage --cover-package=duo