File tree Expand file tree Collapse file tree 6 files changed +9
-1
lines changed Expand file tree Collapse file tree 6 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ jobs:
123
123
PYTHON_VERSION : ' *'
124
124
BLAS : ' mkl'
125
125
COVERAGE : ' true'
126
+ SHOW_SHORT_SUMMARY : ' true'
126
127
127
128
# Check compilation with Ubuntu bionic 18.04 LTS and scipy from conda-forge
128
129
- template : build_tools/azure/posix.yml
Original file line number Diff line number Diff line change 34
34
# Set in azure-pipelines.yml
35
35
DISTRIB : ' '
36
36
DOCKER_CONTAINER : ' '
37
+ SHOW_SHORT_SUMMARY : ' false'
37
38
strategy :
38
39
matrix :
39
40
${{ insert }} : ${{ parameters.matrix }}
Original file line number Diff line number Diff line change 33
33
THREADPOOLCTL_VERSION : ' latest'
34
34
COVERAGE : ' true'
35
35
TEST_DOCSTRINGS : ' false'
36
+ SHOW_SHORT_SUMMARY : ' false'
36
37
strategy :
37
38
matrix :
38
39
${{ insert }} : ${{ parameters.matrix }}
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ if [[ "$PYTEST_XDIST_VERSION" != "none" ]]; then
50
50
TEST_CMD=" $TEST_CMD -n2"
51
51
fi
52
52
53
+ if [[ " $SHOW_SHORT_SUMMARY " == " true" ]]; then
54
+ TEST_CMD=" $TEST_CMD -ra"
55
+ fi
56
+
53
57
set -x
54
58
eval " $TEST_CMD --pyargs sklearn"
55
59
set +x
Original file line number Diff line number Diff line change 20
20
PYTEST_XDIST : ' true'
21
21
PYTEST_XDIST_VERSION : ' latest'
22
22
TEST_DIR : ' $(Agent.WorkFolder)/tmp_folder'
23
+ SHOW_SHORT_SUMMARY : ' false'
23
24
strategy :
24
25
matrix :
25
26
${{ insert }} : ${{ parameters.matrix }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ addopts =
15
15
--doctest-modules
16
16
--disable-pytest-warnings
17
17
--color =yes
18
- -rxXs
18
+ -rN
19
19
20
20
filterwarnings =
21
21
ignore:the matrix subclass:PendingDeprecationWarning
You can’t perform that action at this time.
0 commit comments