https://github.com/UCBerkeleySETI/turbo_seti
Raw File
Tip revision: 64d4e3785767fc9bddb717833fedc74584ba3aee authored by Danny Price on 19 July 2020, 08:45:09 UTC
Merge pull request #56 from UCBerkeleySETI/parallel_tseti
Tip revision: 64d4e37
.travis.yml
language: python
python:
  - "2.7"
  - "3.6"
  
# 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 -r requirements.txt
  - pip install -r requirements_test.txt
  - pip install .

# Command to run test
script:
  - cd test; python download_test_data.py; ./run_tests.sh;
    
branches:
  only:
    - master
back to top