-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis_TBI.yml
72 lines (63 loc) · 2.8 KB
/
.travis_TBI.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Config file for automatic testing at travis-ci.org
language: python
python:
- 3.7
env:
global:
# The following versions are the 'default' for tests, unless
# overridden underneath. They are defined here in order to save having
# to repeat them for all configurations.
- NUMPY_VERSION=stable
- ASTROPY_VERSION=stable
- MAIN_CMD='python setup.py'
- SETUP_CMD='test'
- PIP_DEPENDENCIES='git+https://github.com/mperrin/webbpsf.git#egg=webbpsf jwxml'
- CONDA_DEPENDENCIES='scipy matplotlib six'
# For headless testing of code that imports PyPlot:
- MPLBACKEND=Agg
matrix:
include:
# Do a coverage test in Python 3.
- python: 3.6
env: SETUP_CMD='test'
# Try Astropy development version
- python: 3.6
env: SETUP_CMD='test' ASTROPY_VERSION=development
# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
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.sh
#- source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh
# As described above, using ci-helpers, you should be able to set up an
# environment with dependencies installed using conda and pip, but in some
# cases this may not provide enough flexibility in how to install a
# specific dependency (and it will not be able to install non-Python
# dependencies). Therefore, you can also include commands below (as
# well as at the start of the install section or in the before_install
# section if they are needed before setting up conda) to install any
# other dependencies.
script: $MAIN_CMD $SETUP_CMD
# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password
#deploy:
# provider: pypi
# distributions: sdist bdist_wheel
# user: jarron
# password:
# secure: PLEASE_REPLACE_ME
# on:
# tags: true
# repo: JarronL/pynrc
# python: 3.6