diff --git a/requirements-install.sh b/requirements-install.sh index d110bcef..b7a8d96d 100755 --- a/requirements-install.sh +++ b/requirements-install.sh @@ -1,15 +1,15 @@ #!/bin/bash -ex -pip install -U -r requirements-test.txt - -if [[ $USE_OPTIONAL == "true" ]]; then - pip install -U -r requirements-optional.txt -fi - if [[ $SIX_VERSION ]]; then pip install six==$SIX_VERSION fi +pip install -r requirements-test.txt + +if [[ $USE_OPTIONAL == "true" ]]; then + pip install -r requirements-optional.txt +fi + if [[ $CI == "true" ]]; then - pip install -U codecov + pip install codecov fi