|
20 | 20 | RUN_TESTS_MAX_ATTEMPTS: 2 |
21 | 21 | TEST_ENV_NAME: 'test' |
22 | 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_bitwise.py |
29 | | - test_copy.py |
30 | | - test_counting.py |
31 | | - test_fft.py |
32 | | - test_flat.py |
33 | | - test_histogram.py |
34 | | - test_indexing.py |
35 | | - test_linalg.py |
36 | | - test_logic.py |
37 | | - test_manipulation.py |
38 | | - test_mathematical.py |
39 | | - test_mixins.py |
40 | | - test_nanfunctions.py |
41 | | - test_ndarray.py |
42 | | - test_outer.py |
43 | | - test_product.py |
44 | | - test_random_state.py |
45 | | - test_search.py |
46 | | - test_sort.py |
47 | | - test_special.py |
48 | | - test_statistics.py |
49 | | - test_sum.py |
50 | | - test_sycl_queue.py |
51 | | - test_umath.py |
52 | | - test_usm_type.py |
53 | | - third_party/cupy/core_tests |
54 | | - third_party/cupy/fft_tests |
55 | | - third_party/cupy/creation_tests |
56 | | - third_party/cupy/indexing_tests |
57 | | - third_party/cupy/lib_tests |
58 | | - third_party/cupy/linalg_tests |
59 | | - third_party/cupy/logic_tests |
60 | | - third_party/cupy/manipulation_tests |
61 | | - third_party/cupy/math_tests |
62 | | - third_party/cupy/sorting_tests |
63 | | - third_party/cupy/statistics_tests/test_histogram.py |
64 | | - third_party/cupy/statistics_tests/test_meanvar.py |
65 | | - third_party/cupy/test_ndim.py |
| 23 | + tests/test_absolute.py |
| 24 | + tests/test_amin_amax.py |
| 25 | + tests/test_arithmetic.py |
| 26 | + tests/test_arraycreation.py |
| 27 | + tests/test_arraymanipulation.py |
| 28 | + tests/test_bitwise.py |
| 29 | + tests/test_copy.py |
| 30 | + tests/test_counting.py |
| 31 | + tests/test_fft.py |
| 32 | + tests/test_flat.py |
| 33 | + tests/test_histogram.py |
| 34 | + tests/test_indexing.py |
| 35 | + tests/test_linalg.py |
| 36 | + tests/test_logic.py |
| 37 | + tests/test_manipulation.py |
| 38 | + tests/test_mathematical.py |
| 39 | + tests/test_mixins.py |
| 40 | + tests/test_nanfunctions.py |
| 41 | + tests/test_ndarray.py |
| 42 | + tests/test_outer.py |
| 43 | + tests/test_product.py |
| 44 | + tests/test_random_state.py |
| 45 | + tests/test_search.py |
| 46 | + tests/test_sort.py |
| 47 | + tests/test_special.py |
| 48 | + tests/test_statistics.py |
| 49 | + tests/test_sum.py |
| 50 | + tests/test_sycl_queue.py |
| 51 | + tests/test_umath.py |
| 52 | + tests/test_usm_type.py |
| 53 | + tests/third_party/cupy/core_tests |
| 54 | + tests/third_party/cupy/fft_tests |
| 55 | + tests/third_party/cupy/creation_tests |
| 56 | + tests/third_party/cupy/indexing_tests |
| 57 | + tests/third_party/cupy/lib_tests |
| 58 | + tests/third_party/cupy/linalg_tests |
| 59 | + tests/third_party/cupy/logic_tests |
| 60 | + tests/third_party/cupy/manipulation_tests |
| 61 | + tests/third_party/cupy/math_tests |
| 62 | + tests/third_party/cupy/sorting_tests |
| 63 | + tests/third_party/cupy/statistics_tests/test_histogram.py |
| 64 | + tests/third_party/cupy/statistics_tests/test_meanvar.py |
| 65 | + tests/third_party/cupy/test_ndim.py |
66 | 66 | VER_JSON_NAME: 'version.json' |
67 | 67 | VER_SCRIPT1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); " |
68 | 68 | VER_SCRIPT2: "d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))" |
@@ -177,7 +177,7 @@ jobs: |
177 | 177 | channel-path: '${{ github.workspace }}/channel/' |
178 | 178 | pkg-path-in-channel: '${{ github.workspace }}/channel/linux-64/' |
179 | 179 | extracted-pkg-path: '${{ github.workspace }}/pkg/' |
180 | | - tests-path: '${{ github.workspace }}/pkg/info/test/tests/' |
| 180 | + # tests-path: '${{ github.workspace }}/pkg/info/test/tests/' |
181 | 181 | ver-json-path: '${{ github.workspace }}/version.json' |
182 | 182 |
|
183 | 183 | steps: |
@@ -258,7 +258,7 @@ jobs: |
258 | 258 | if: env.RERUN_TESTS_ON_FAILURE != 'true' |
259 | 259 | run: | |
260 | 260 | python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }} |
261 | | - working-directory: ${{ env.tests-path }} |
| 261 | + # working-directory: ${{ env.tests-path }} |
262 | 262 |
|
263 | 263 | - name: Run tests |
264 | 264 | if: env.RERUN_TESTS_ON_FAILURE == 'true' |
|
0 commit comments