Skip to content

Commit

Permalink
update travis install
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jun 17, 2020
1 parent e759bea commit d474adf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
if [ "${TRAVIS_OS_NAME}" != "windows" ]; then
python setup.py install
else
echo "python setup.py install"
echo "pip install .[test]"
while sleep 540; do echo "=====[ Still running after $SECONDS seconds ]====="; done &
python setup.py install | tail -n 1000
pip install .\[test\] | tail -n 1000
kill %1
fi
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def get_extensions():
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
ext_modules=get_extensions() if not BUILD_DOCS else [],
cmdclass={
'build_ext':
Expand Down

0 comments on commit d474adf

Please sign in to comment.