https://github.com/UCBerkeleySETI/turbo_seti
Revision 063fee4a32ac5a5080479b43c4fbf31083308307 authored by Avinash Kumar on 04 December 2021, 20:18:47 UTC, committed by Avinash Kumar on 04 December 2021, 20:18:47 UTC
1 parent d459c0e
Raw File
Tip revision: 063fee4a32ac5a5080479b43c4fbf31083308307 authored by Avinash Kumar on 04 December 2021, 20:18:47 UTC
version 2.1.21
Tip revision: 063fee4
this_was_the.travis.yml
language: python
python:
  - "3.6"
  - "3.7"
  
# command to install dependencies
install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq libhdf5-serial-dev
  - pip install --upgrade pip setuptools wheel
  - pip install --only-binary=numpy,scipy numpy scipy
  - pip install h5py --only-binary=h5py
  - pip install git+https://github.com/ucberkeleyseti/blimpy
  - pip install -r requirements.txt
  - pip install -r requirements_test.txt
  - pip install .

# Command to run test
script:
  # Ping stdout every 5 minutes or Travis kills build,
  # while travis_wait does not show the command output while processing.
  # https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received
  - |
    while sleep 5m; do
      echo "====[ $SECONDS seconds still running ]===="
    done &
  - cd test; python download_test_data.py; ./run_tests.sh;
    
branches:
  only:
    - master
back to top