diff options
author | Brigitta Sipocz <bsipocz@gmail.com> | 2019-10-15 10:22:39 -0700 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2019-10-15 10:22:39 -0700 |
commit | b23d8dee633460c9d628e2f85d2c3252b39efe1b (patch) | |
tree | 5137d509f5bd778e2ae19712b16a89c9e4b80684 /.travis.yml | |
parent | b89caf6dd1341032fbffbe0888097a018037af00 (diff) | |
download | numpy-b23d8dee633460c9d628e2f85d2c3252b39efe1b.tar.gz |
TST: Adding CI stages, with one initial job to the Travis CI (gh-14703)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 714122957..68564d35b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,14 @@ cache: directories: - $HOME/.cache/pip +stage: Comprehensive tests + +stages: + # Do the style check and a single test job, don't proceed if it fails + - name: Initial tests + # Do the rest of the tests + - name: Comprehensive tests + env: global: - OpenBLAS_version=0.3.7 @@ -29,13 +37,14 @@ env: iFWt9Ka92CaqYdU7nqfWp9VImSndPmssjmCXJ1v1IjZPAM\ ahp7Qnm0rWRmA0z9SomuRUQOJQ6s684vU=" -python: - - 3.5 - - 3.6 - - 3.7 - - 3.8-dev matrix: include: + # Do all python versions without environment variables set + - python: 3.5 + - stage: Initial tests + python: 3.6 + - python: 3.7 + - python: 3.8-dev - python: 3.7 env: INSTALL_PICKLE5=1 - python: 3.6 |