Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 48e83df

Browse files
authored
MAINT Removes short summary for most builds (#21554)
1 parent 9a0592f commit 48e83df

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ jobs:
123123
PYTHON_VERSION: '*'
124124
BLAS: 'mkl'
125125
COVERAGE: 'true'
126+
SHOW_SHORT_SUMMARY: 'true'
126127

127128
# Check compilation with Ubuntu bionic 18.04 LTS and scipy from conda-forge
128129
- template: build_tools/azure/posix.yml

build_tools/azure/posix-docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
# Set in azure-pipelines.yml
3535
DISTRIB: ''
3636
DOCKER_CONTAINER: ''
37+
SHOW_SHORT_SUMMARY: 'false'
3738
strategy:
3839
matrix:
3940
${{ insert }}: ${{ parameters.matrix }}

build_tools/azure/posix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
THREADPOOLCTL_VERSION: 'latest'
3434
COVERAGE: 'true'
3535
TEST_DOCSTRINGS: 'false'
36+
SHOW_SHORT_SUMMARY: 'false'
3637
strategy:
3738
matrix:
3839
${{ insert }}: ${{ parameters.matrix }}

build_tools/azure/test_script.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ if [[ "$PYTEST_XDIST_VERSION" != "none" ]]; then
5050
TEST_CMD="$TEST_CMD -n2"
5151
fi
5252

53+
if [[ "$SHOW_SHORT_SUMMARY" == "true" ]]; then
54+
TEST_CMD="$TEST_CMD -ra"
55+
fi
56+
5357
set -x
5458
eval "$TEST_CMD --pyargs sklearn"
5559
set +x

build_tools/azure/windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
PYTEST_XDIST: 'true'
2121
PYTEST_XDIST_VERSION: 'latest'
2222
TEST_DIR: '$(Agent.WorkFolder)/tmp_folder'
23+
SHOW_SHORT_SUMMARY: 'false'
2324
strategy:
2425
matrix:
2526
${{ insert }}: ${{ parameters.matrix }}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ addopts =
1515
--doctest-modules
1616
--disable-pytest-warnings
1717
--color=yes
18-
-rxXs
18+
-rN
1919

2020
filterwarnings =
2121
ignore:the matrix subclass:PendingDeprecationWarning

0 commit comments

Comments
 (0)