ci: Travis: test with pexpect on macos
Uses `PYTEST_COVERAGE=1` already, which will come in via dropping Python 2 soon anyway.
This commit is contained in:
parent
fb12d2a612
commit
49c6aebbc7
|
@ -20,9 +20,6 @@ jobs:
|
||||||
include:
|
include:
|
||||||
# OSX tests - first (in test stage), since they are the slower ones.
|
# OSX tests - first (in test stage), since they are the slower ones.
|
||||||
- &test-macos
|
- &test-macos
|
||||||
# NOTE: (tests with) pexpect appear to be buggy on Travis,
|
|
||||||
# at least with coverage.
|
|
||||||
# Log: https://travis-ci.org/pytest-dev/pytest/jobs/500358864
|
|
||||||
os: osx
|
os: osx
|
||||||
osx_image: xcode10.1
|
osx_image: xcode10.1
|
||||||
language: generic
|
language: generic
|
||||||
|
@ -33,7 +30,7 @@ jobs:
|
||||||
- python -V
|
- python -V
|
||||||
- test $(python -c 'import sys; print("%d%d" % sys.version_info[0:2])') = 27
|
- test $(python -c 'import sys; print("%d%d" % sys.version_info[0:2])') = 27
|
||||||
- <<: *test-macos
|
- <<: *test-macos
|
||||||
env: TOXENV=py37-xdist
|
env: TOXENV=py37-pexpect,py37-xdist PYTEST_COVERAGE=1
|
||||||
before_install:
|
before_install:
|
||||||
- which python3
|
- which python3
|
||||||
- python3 -V
|
- python3 -V
|
||||||
|
|
Loading…
Reference in New Issue