forked from NuSTAR/nustar_pysolar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
54 lines (44 loc) · 2.04 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.5"
# Setting sudo to false opts in to Travis-CI container-based builds.
sudo: false
env:
global:
# The following versions are the 'default' for tests, unless
# overidden underneath. They are defined here in order to save having
# to repeat them for all configurations.
- NUMPY_VERSION=1.11.3
- SCIPY_VERSION=0.18.1
# Astropy 1.2.1 for now since that's what required for Sunpy
- ASTROPY_VERSION=1.2.1
- SUNPY_VERSION=0.7.5
- PIP_DEPENDENCIES=''
- CONDA_CHANNELS='conda-forge'
- MAIN_CMD='python setup.py'
# For this package-template, we include examples of Cython modules,
# so Cython is required for testing. If your package does not include
# Cython code, you can set CONDA_DEPENDENCIES=''
- CONDA_DEPENDENCIES='numpy scipy astropy matplotlib sunpy'
matrix:
# Make sure that egg_info works without dependencies
- SETUP_CMD='egg_info'
# Now run python setup.py test"
- SETUP_CMD='test'
install:
# We now use the ci-helpers package to set up our testing environment.
# This is done by using Miniconda and then using conda and pip to install
# dependencies. Which dependencies are installed using conda and pip is
# determined by the CONDA_DEPDENDENCIES and PIP_DEPENDENCIES variables,
# which should be space-delimited lists of package names. See the README
# in https://github.com/astropy/ci-helpers for information about the full
# list of environment variables that can be used to customize your
# environment. In some cases, ci-helpers may not offer enough flexibility
# in how to install a package, in which case you can have additional
# commands in the install: section below.
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh
script:
# Your test script goes here
- $MAIN_CMD $SETUP_CMD