install.sh 256 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
#!/bin/bash

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