Skip to content

Commit 4fe9397

Browse files
committed
Use -v instead of -s in CI
No-capturing mode -s is useful for remote debugging especially in case libjulia initialization fails. But it makes reading output almost impossible. Let's use -v instead since it provides what test is being executed in a more readable format.
1 parent 9247319 commit 4fe9397

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ script:
7474
# "py,py27" below would be redundant when the main interpreter is
7575
# Python 2.7 but it simplifies the CI setup.
7676
- if [ "$CROSS_VERSION" = "1" ]; then
77-
$PYTHON -m tox -e py,py27 -- -s;
77+
$PYTHON -m tox -e py,py27 -- -v;
7878
fi
7979

80-
- PYJULIA_TEST_REBUILD=yes $PYTHON -m tox -- --cov=julia -s
80+
- PYJULIA_TEST_REBUILD=yes $PYTHON -m tox -- --cov=julia -v
8181

8282
after_success:
8383
- coveralls

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ test_script:
9191
# Run cross-version tests but ignore the failures (from Python 2).
9292
# Once cross-version in Windows is fmixed, stop using
9393
# Invoke-Expression (which ignores the exit status).
94-
- ps: if ($env:CROSS_VERSION -eq 1) { Invoke-Expression "tox -- -s" }
95-
# - ps: if ($env:CROSS_VERSION -eq 1) { tox -- -s }
94+
- ps: if ($env:CROSS_VERSION -eq 1) { Invoke-Expression "tox -- -v" }
95+
# - ps: if ($env:CROSS_VERSION -eq 1) { tox -- -v }
9696

9797
# Rebuild PyCall.ji for each Python interpreter before testing:
9898
- "SET PYJULIA_TEST_REBUILD=yes"
99-
- tox -- -s
99+
- tox -- -v

0 commit comments

Comments
 (0)