Skip to content

Commit 3125231

Browse files
Remove debug lines
1 parent 7e253c9 commit 3125231

File tree

1 file changed

+3
-20
lines changed

1 file changed

+3
-20
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

7878
strategy:
7979
matrix:
80-
python: ['3.11']
80+
python: ['3.9', '3.10', '3.11', '3.12']
8181
os: [ubuntu-22.04, windows-2019]
8282

8383
permissions:
@@ -298,7 +298,7 @@ jobs:
298298

299299
strategy:
300300
matrix:
301-
python: ['3.11']
301+
python: ['3.9', '3.10', '3.11', '3.12']
302302

303303
continue-on-error: true
304304

@@ -423,17 +423,6 @@ jobs:
423423
FOR /F "delims=" %%i IN ('python -c "import sysconfig, os; print(os.path.join(sysconfig.get_paths()[\"purelib\"], 'dpnp', 'tests'))"') DO SET tests_path=%%i
424424
echo tests_path=%tests_path%>>%GITHUB_ENV%
425425
426-
- name: Check site-packages
427-
run: |
428-
echo "DIR site-packages folder:"
429-
DIR %CONDA_PREFIX%\Lib\site-packages\dpnp
430-
echo "Expected tests_path: %tests_path%"
431-
432-
- name: Check working directory and files
433-
run: |
434-
echo Current working directory: %tests_path%
435-
dir %tests_path%
436-
437426
- name: echo TEST_SCOPE
438427
run: |
439428
echo TEST_SCOPE value: ${{ env.TEST_SCOPE }}
@@ -457,13 +446,7 @@ jobs:
457446
command: >-
458447
mamba activate ${{ env.TEST_ENV_NAME }}
459448
& C:
460-
& cd %tests_path%
461-
& echo Tests dir: %tests_path%
462-
& echo Current dir: %cd%
463-
& echo Dir contents:
464-
& dir
465-
& pushd %tests_path%
466-
& echo Current dir: %cd%
449+
& cd ${{ env.tests_path }}
467450
& python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
468451
469452
upload:

0 commit comments

Comments
 (0)