Skip to content

Commit 0c942c0

Browse files
authored
drop cirrus-ci minimal tests (#4218)
1 parent 9e7e6ca commit 0c942c0

File tree

1 file changed

+5
-27
lines changed

1 file changed

+5
-27
lines changed

.cirrus.yml

+5-27
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ container:
1818
env:
1919
# Skip specific tasks by name. Set to a non-empty string to skip.
2020
SKIP_LINT_TASK: ""
21-
SKIP_TEST_MINIMAL_TASK: ""
22-
SKIP_TEST_FULL_TASK: ""
21+
SKIP_TEST_TASK: ""
2322
SKIP_GALLERY_TASK: ""
2423
SKIP_DOCTEST_TASK: ""
2524
SKIP_LINKCHECK_TASK: ""
2625
# Skip task groups by type. Set to a non-empty string to skip.
27-
SKIP_ALL_TEST_TASKS: ""
2826
SKIP_ALL_DOC_TASKS: ""
2927
# Maximum cache period (in weeks) before forcing a new cache upload.
3028
CACHE_PERIOD: "2"
@@ -130,37 +128,17 @@ lint_task:
130128

131129

132130
#
133-
# Testing Minimal (Linux)
131+
# Testing (Linux)
134132
#
135-
test_minimal_task:
136-
only_if: ${SKIP_TEST_MINIMAL_TASK} == "" && ${SKIP_ALL_TEST_TASKS} == ""
133+
test_task:
134+
only_if: ${SKIP_TEST_TASK} == ""
137135
<< : *CREDITS_TEMPLATE
138136
matrix:
139137
env:
140138
PY_VER: 3.7
141139
env:
142140
PY_VER: 3.8
143-
name: "${CIRRUS_OS}: py${PY_VER} tests (minimal)"
144-
<< : *LINUX_TASK_TEMPLATE
145-
tests_script:
146-
- export CONDA_OVERRIDE_LINUX="$(uname -r | cut -d'+' -f1)"
147-
- echo "[Resources]" > ${SITE_CFG}
148-
- echo "doc_dir = ${CIRRUS_WORKING_DIR}/docs" >> ${SITE_CFG}
149-
- nox --session tests -- --verbose
150-
151-
152-
#
153-
# Testing Full (Linux)
154-
#
155-
test_full_task:
156-
only_if: ${SKIP_TEST_FULL_TASK} == "" && ${SKIP_ALL_TEST_TASKS} == ""
157-
<< : *CREDITS_TEMPLATE
158-
matrix:
159-
env:
160-
PY_VER: 3.7
161-
env:
162-
PY_VER: 3.8
163-
name: "${CIRRUS_OS}: py${PY_VER} tests (full)"
141+
name: "${CIRRUS_OS}: py${PY_VER} tests"
164142
container:
165143
image: gcc:latest
166144
cpu: 6

0 commit comments

Comments
 (0)