From 802185ed23a20981fce8dcbb4731b96dec5ad3b3 Mon Sep 17 00:00:00 2001 From: Unrud Date: Fri, 16 Jun 2017 01:04:55 +0200 Subject: [PATCH] Use --editable argument instead of -e It's more readable. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 22eb01e..734eda2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi install: - - pip3 install --upgrade -e .[test] + - pip3 install --upgrade --editable .[test] script: - python3 setup.py test --addopts "-r s"