AMD64
no language set
Git
language: ruby
dist: xenial
group: edge
cache:
directories:
- "${HOME}/bin"
- "${HOME}/.cache/travis-terraform-config"
bundler: true
env:
global:
- PATH="${HOME}/bin:${PATH}"
- TMPDIR="${TMPDIR:-/tmp}"
before_install:
- eval "$(gimme 1.11.1)"
- make deps
script:
- make test
- make assert-clean
elfi-dev/elfi:.travis.yml@ded937c
matrix:
include:
- os: linux
language: python
python: 3.6
- os: linux
language: python
python: 3.7
- os: osx
language: generic
before_install:
- mkdir -p /Users/travis/.matplotlib
- "echo 'backend: TkAgg' > /Users/travis/.matplotlib/matplotlibrc"
- travis_retry wget "http://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh" -O miniconda.sh
- "bash miniconda.sh -b -p $HOME/miniconda"
- "export PATH=$HOME/miniconda/bin:$PATH"
- "conda create -y -n elfi python=3.6 scipy"
- "source activate elfi"
cache: pip
install:
- pip install numpy
- pip install -r requirements-dev.txt
- pip install -e .
- pip install "dask[distributed]" --upgrade
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ipcluster start -n 2 --daemonize ; fi
#- travis_wait 20 make test
- make test
Build Config
{
"os": [
"linux"
],
"env": {
"global": [
{
"PATH": "\"${HOME}/bin:${PATH}\""
},
{
"TMPDIR": "\"${TMPDIR:-/tmp}\""
}
]
},
"dist": "xenial",
"cache": {
"bundler": true,
"directories": [
"${HOME}/bin",
"${HOME}/.cache/travis-terraform-config"
]
},
"group": "edge",
"script": [
"make test",
"make assert-clean"
],
"language": "ruby",
"before_install": [
"eval \"$(gimme 1.11.1)\"",
"make deps"
]
}