hosts/.travis.yml

37 lines
559 B
YAML
Raw Normal View History

notifications:
email: false
2017-06-29 05:51:37 +02:00
language: generic
sudo: false
cache:
directories:
2017-06-29 05:51:37 +02:00
- $HOME/miniconda3
2017-06-29 05:51:37 +02:00
before_cache:
- rm -rf $HOME/miniconda3/pkgs/cache
- rm -rf $HOME/miniconda3/envs/hosts
2019-07-13 20:16:55 +02:00
- rm -rf $HOME/miniconda3/conda-meta/history
- touch $HOME/miniconda3/conda-meta/history
2017-06-29 05:51:37 +02:00
os:
- linux
- osx
env:
- PYTHON_VERSION="3.5"
2017-06-29 05:51:37 +02:00
- PYTHON_VERSION="3.6"
- PYTHON_VERSION="3.7"
2017-06-29 05:51:37 +02:00
before_install:
- export PATH="$HOME/miniconda3/bin:$PATH"
install:
2017-06-29 05:51:37 +02:00
- ci/install_conda.sh
2017-07-11 05:26:02 +02:00
- ci/setup_conda_env.sh
script:
2017-07-11 05:26:02 +02:00
- ci/test.sh
- ci/lint.sh