mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-19 20:48:31 +02:00
Travis-CI: Allow development version of Python to fail gracefully
This commit is contained in:
parent
4cfd071547
commit
50ed4e4b52
1 changed files with 12 additions and 1 deletions
13
.travis.yml
13
.travis.yml
|
@ -6,7 +6,9 @@ python:
|
||||||
- "3.5"
|
- "3.5"
|
||||||
- "3.6"
|
- "3.6"
|
||||||
- "3.7-dev"
|
- "3.7-dev"
|
||||||
- "nightly"
|
# - "nightly"
|
||||||
|
- "pypy2.7"
|
||||||
|
- "pypy3.5"
|
||||||
install:
|
install:
|
||||||
- "pip install setuptools -U"
|
- "pip install setuptools -U"
|
||||||
- "pip install -e ."
|
- "pip install -e ."
|
||||||
|
@ -15,3 +17,12 @@ install:
|
||||||
script:
|
script:
|
||||||
- python --version
|
- python --version
|
||||||
- behave
|
- behave
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
python: "3.7-dev"
|
||||||
|
# python: "nightly"
|
||||||
|
python: "pypy2.7"
|
||||||
|
python: "pypy3.5"
|
||||||
|
sudo: false
|
||||||
|
cache: pip
|
||||||
|
|
Loading…
Add table
Reference in a new issue