install.sh 259 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
#!/bin/bash

if [ "${TRAVIS_OS_NAME}" != "windows" ]; then
  python setup.py install
else
rusty1s's avatar
rusty1s committed
6
  echo "pip install .[test]"
rusty1s's avatar
rusty1s committed
7
  while sleep 540; do echo "=====[ Still running after $SECONDS seconds ]====="; done &
rusty1s's avatar
rusty1s committed
8
  pip install .\[test\] | tail -n 1000
rusty1s's avatar
rusty1s committed
9
  kill %1
rusty1s's avatar
rusty1s committed
10
fi