Skip to content

Commit 1388816

Browse files
Add debug info for test_windows
1 parent d5fb73f commit 1388816

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/conda-package.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,20 @@ jobs:
421421
FOR /F "delims=" %%i IN ('python -c "import site, os; print(os.path.join(site.getsitepackages()[0], 'dpnp', 'tests'))"') DO SET tests_path=%%i
422422
echo tests_path=%tests_path%>>%GITHUB_ENV%
423423
424+
- name: Check working directory and files
425+
run: |
426+
echo Current working directory: %tests_path%
427+
dir %tests_path%
428+
working-directory: ${{ env.tests_path }}
429+
430+
- name: echo TEST_SCOPE
431+
run: |
432+
echo TEST_SCOPE value: ${{ env.TEST_SCOPE }}
433+
424434
- name: Run tests
425435
if: env.RERUN_TESTS_ON_FAILURE != 'true'
426436
run: |
437+
echo Running tests in working-directory: %cd%
427438
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
428439
working-directory: ${{ env.tests_path }}
429440

0 commit comments

Comments
 (0)