19
19
RERUN_TESTS_ON_FAILURE : ' true'
20
20
RUN_TESTS_MAX_ATTEMPTS : 2
21
21
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
70
22
VER_JSON_NAME : ' version.json'
71
23
VER_SCRIPT1 : " import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "
72
24
VER_SCRIPT2 : " d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))"
@@ -263,7 +215,7 @@ jobs:
263
215
- name : Run tests
264
216
if : env.RERUN_TESTS_ON_FAILURE != 'true'
265
217
run : |
266
- python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
218
+ python -m pytest -q -ra --disable-warnings -vv .
267
219
working-directory : ${{ env.tests-path }}
268
220
269
221
- name : Run tests
@@ -279,7 +231,7 @@ jobs:
279
231
. $CONDA/etc/profile.d/conda.sh
280
232
conda activate ${{ env.TEST_ENV_NAME }}
281
233
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 .
283
235
284
236
test_windows :
285
237
name : Test ['windows-2019', python='${{ matrix.python }}']
@@ -418,7 +370,7 @@ jobs:
418
370
- name : Run tests
419
371
if : env.RERUN_TESTS_ON_FAILURE != 'true'
420
372
run : |
421
- python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
373
+ python -m pytest -q -ra --disable-warnings -vv .
422
374
working-directory : ${{ env.tests-path }}
423
375
424
376
- name : Run tests
@@ -433,7 +385,7 @@ jobs:
433
385
command : >-
434
386
mamba activate ${{ env.TEST_ENV_NAME }}
435
387
& 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 .
437
389
438
390
upload :
439
391
name : Upload ['${{ matrix.os }}', python='${{ matrix.python }}']
0 commit comments