35 строки
755 B
YAML
35 строки
755 B
YAML
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
sudo: false
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
env:
|
|
global:
|
|
- SETUP_XVFB=True
|
|
- CONDA_CHANNELS="glueviz"
|
|
- CONDA_DEPENDENCIES="glue-core pytest mock"
|
|
- PIP_DEPENDENCIES="pytest-faulthandler pytest-qt"
|
|
matrix:
|
|
# - PYTHON_VERSION=2.7
|
|
# - PYTHON_VERSION=3.6
|
|
- PYTHON_VERSION=2.7 CONDA_CHANNELS="glueviz/label/dev"
|
|
- PYTHON_VERSION=3.6 CONDA_CHANNELS="glueviz/label/dev"
|
|
|
|
install:
|
|
|
|
- git clone git://github.com/astropy/ci-helpers.git
|
|
- source ci-helpers/travis/setup_conda.sh
|
|
|
|
# For now we need to install pywwt here because if we install it sooner,
|
|
# the post-hook install runs before numpy is correctly set up
|
|
- conda install -c wwt/label/dev pywwt
|
|
|
|
script:
|
|
- pytest glue_wwt
|