forked from nipype/pydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
61 lines (49 loc) · 1.15 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
54
55
56
57
58
59
60
61
dist: xenial
sudo: true
language: python
cache:
directories:
- $HOME/.cache/pip
python:
- 3.7
services:
- docker
env:
global:
- CHECK_TYPE="test"
- INSTALL_TYPE="pip"
- INSTALL_DEPENDS="pip setuptools"
- JOBQUEUE="none"
matrix:
- INSTALL_TYPE="install"
- INSTALL_TYPE="develop"
- INSTALL_TYPE="sdist"
- INSTALL_TYPE="wheel"
- INSTALL_DEPENDS="pip==18.1 setuptools==30.2.1"
- INSTALL_DEPENDS="pip==10.0.1 setuptools==30.3.0"
- DEPENDS="-r min-requirements.txt"
- CHECK_TYPE="style"
# This should only fail with pip 10.0.1 with URL requirements (e.g., "package @ URL")
# Useful for testing un-released upstream fixes
matrix:
include:
- python: 3.7
env: JOBQUEUE="slurm"
- python: 3.8-dev
env: INSTALL_TYPE="pip" PIP_ARGS="--pre"
allow_failures:
- python: 3.7
env: INSTALL_DEPENDS="pip==10.0.1 setuptools==30.3.0"
- python: 3.8-dev
env: INSTALL_TYPE="pip" PIP_ARGS="--pre"
before_install:
- source ./ci/${JOBQUEUE}.sh
- travis_before_install
install:
- travis_install
before_script:
- travis_before_script
script:
- travis_script
after_script:
- travis_after_script