Skip to content

Commit 0bcd49d

Browse files
Remove TEST_SCOPE to run all tests in public CI (#2152)
1 parent 687b8ea commit 0bcd49d

File tree

1 file changed

+4
-52
lines changed

1 file changed

+4
-52
lines changed

.github/workflows/conda-package.yml

Lines changed: 4 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -19,54 +19,6 @@ env:
1919
RERUN_TESTS_ON_FAILURE: 'true'
2020
RUN_TESTS_MAX_ATTEMPTS: 2
2121
TEST_ENV_NAME: 'test'
22-
TEST_SCOPE: >-
23-
test_absolute.py
24-
test_amin_amax.py
25-
test_arithmetic.py
26-
test_arraycreation.py
27-
test_arraymanipulation.py
28-
test_arraypad.py
29-
test_bitwise.py
30-
test_copy.py
31-
test_counting.py
32-
test_fft.py
33-
test_fill.py
34-
test_flat.py
35-
test_histogram.py
36-
test_indexing.py
37-
test_linalg.py
38-
test_logic.py
39-
test_manipulation.py
40-
test_mathematical.py
41-
test_mixins.py
42-
test_nanfunctions.py
43-
test_ndarray.py
44-
test_outer.py
45-
test_product.py
46-
test_random_state.py
47-
test_search.py
48-
test_sort.py
49-
test_special.py
50-
test_statistics.py
51-
test_sum.py
52-
test_sycl_queue.py
53-
test_umath.py
54-
test_usm_type.py
55-
third_party/cupy/core_tests
56-
third_party/cupy/fft_tests
57-
third_party/cupy/creation_tests
58-
third_party/cupy/indexing_tests
59-
third_party/cupy/lib_tests
60-
third_party/cupy/linalg_tests
61-
third_party/cupy/logic_tests
62-
third_party/cupy/manipulation_tests
63-
third_party/cupy/math_tests
64-
third_party/cupy/padding_tests
65-
third_party/cupy/sorting_tests
66-
third_party/cupy/statistics_tests/test_histogram.py
67-
third_party/cupy/statistics_tests/test_meanvar.py
68-
third_party/cupy/test_ndim.py
69-
third_party/cupy/test_type_routines.py
7022
VER_JSON_NAME: 'version.json'
7123
VER_SCRIPT1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "
7224
VER_SCRIPT2: "d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))"
@@ -263,7 +215,7 @@ jobs:
263215
- name: Run tests
264216
if: env.RERUN_TESTS_ON_FAILURE != 'true'
265217
run: |
266-
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
218+
python -m pytest -q -ra --disable-warnings -vv .
267219
working-directory: ${{ env.tests-path }}
268220

269221
- name: Run tests
@@ -279,7 +231,7 @@ jobs:
279231
. $CONDA/etc/profile.d/conda.sh
280232
conda activate ${{ env.TEST_ENV_NAME }}
281233
cd ${{ env.tests-path }}
282-
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
234+
python -m pytest -q -ra --disable-warnings -vv .
283235
284236
test_windows:
285237
name: Test ['windows-2019', python='${{ matrix.python }}']
@@ -418,7 +370,7 @@ jobs:
418370
- name: Run tests
419371
if: env.RERUN_TESTS_ON_FAILURE != 'true'
420372
run: |
421-
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
373+
python -m pytest -q -ra --disable-warnings -vv .
422374
working-directory: ${{ env.tests-path }}
423375

424376
- name: Run tests
@@ -433,7 +385,7 @@ jobs:
433385
command: >-
434386
mamba activate ${{ env.TEST_ENV_NAME }}
435387
& cd ${{ env.tests-path }}
436-
& python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
388+
& python -m pytest -q -ra --disable-warnings -vv .
437389
438390
upload:
439391
name: Upload ['${{ matrix.os }}', python='${{ matrix.python }}']

0 commit comments

Comments
 (0)