https://github.com/deephyper/deephyper
Revision 8e9446273107f9b5f2b1e75515271e386754cfd9 authored by Deathn0t on 14 April 2021, 13:28:44 UTC, committed by Deathn0t on 14 April 2021, 13:28:44 UTC
2 parent s 7984a93 + 96d0e53
Raw File
Tip revision: 8e9446273107f9b5f2b1e75515271e386754cfd9 authored by Deathn0t on 14 April 2021, 13:28:44 UTC
Merge branch 'release/0.2.4'
Tip revision: 8e94462
.travis.yml
os: linux
sudo: required
language: python
python:
  - "3.7.9"

# Change this to your needs
notifications:
  email:
    on_success: change
    on_failure: always

git:
  depth: 3

cache:
  apt: true

# before_install:
#   - sudo apt-get install build-essential -y
#   - sudo apt-get install libopenmpi-dev -y
#   - sudo apt-get install graphviz -y
addons:
  apt:
    update: true
    sources:
    - ubuntu-toolchain-r-test
    - build-essential
    - graphviz
    # MPICH
    - mpich
    - libmpich-dev

install:
  - pip install -e '.[docs,tests,analytics,balsam]'
  - pip install codecov pytest-cov

script:
  - ./run_tests.sh

branches:
  only:
  - master
  - develop

after_success:
  - codecov
back to top