Remove dev/null from build script.

This commit is contained in:
pavoni 2016-01-29 17:35:42 +00:00
parent 03e7ac2a0e
commit 515307b404

View file

@ -7,7 +7,7 @@ cd "$(dirname "$0")/.."
if [ "$TRAVIS_PYTHON_VERSION" = "3.5" ]; then
echo "Verifying requirements_all.txt..."
python3 setup.py -q develop 2> /dev/null
python3 setup.py -q develop
tput setaf 1
script/gen_requirements_all.py validate
VERIFY_REQUIREMENTS_STATUS=$?