Skip to content

Commit c33e3d3

Browse files
Remove debug lines
1 parent 7e253c9 commit c33e3d3

File tree

1 file changed

+3
-25
lines changed

1 file changed

+3
-25
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 25 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,25 +423,9 @@ 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-
437-
- name: echo TEST_SCOPE
438-
run: |
439-
echo TEST_SCOPE value: ${{ env.TEST_SCOPE }}
440-
441426
- name: Run tests
442427
if: env.RERUN_TESTS_ON_FAILURE != 'true'
443428
run: |
444-
echo Running tests in working-directory: %cd%
445429
python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
446430
working-directory: ${{ env.tests_path }}
447431

@@ -457,13 +441,7 @@ jobs:
457441
command: >-
458442
mamba activate ${{ env.TEST_ENV_NAME }}
459443
& 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%
444+
& cd ${{ env.tests_path }}
467445
& python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }}
468446
469447
upload:

0 commit comments

Comments
 (0)