https://github.com/UCBerkeleySETI/turbo_seti
Raw File
Tip revision: 7d9b4fde9bc98d834dc11cfc0acd2380e6676f0e authored by Richard Elkins on 25 May 2022, 21:06:03 UTC
Merge pull request #317 from texadactyl/master
Tip revision: 7d9b4fd
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