Skip to content

Commit 4aded88

Browse files
Update test paths for github action test_linux
1 parent 8088e3a commit 4aded88

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

.github/workflows/conda-package.yml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -20,49 +20,49 @@ env:
2020
RUN_TESTS_MAX_ATTEMPTS: 2
2121
TEST_ENV_NAME: 'test'
2222
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
6666
VER_JSON_NAME: 'version.json'
6767
VER_SCRIPT1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "
6868
VER_SCRIPT2: "d = j['dpnp'][0]; print('='.join((d[s] for s in ('version', 'build'))))"
@@ -177,7 +177,7 @@ jobs:
177177
channel-path: '${{ github.workspace }}/channel/'
178178
pkg-path-in-channel: '${{ github.workspace }}/channel/linux-64/'
179179
extracted-pkg-path: '${{ github.workspace }}/pkg/'
180-
tests-path: '${{ github.workspace }}/pkg/info/test/tests/'
180+
# tests-path: '${{ github.workspace }}/pkg/info/test/tests/'
181181
ver-json-path: '${{ github.workspace }}/version.json'
182182

183183
steps:
@@ -258,7 +258,7 @@ jobs:
258258
if: env.RERUN_TESTS_ON_FAILURE != 'true'
259259
run: |
260260
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
261-
working-directory: ${{ env.tests-path }}
261+
# working-directory: ${{ env.tests-path }}
262262

263263
- name: Run tests
264264
if: env.RERUN_TESTS_ON_FAILURE == 'true'

0 commit comments

Comments
 (0)