Skip to content

Commit ecd933c

Browse files
author
Vahid Tavanashad
committed
fix syntax error
1 parent 574f69a commit ecd933c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ jobs:
359359
- name: Run tests
360360
if: env.RERUN_TESTS_ON_FAILURE != 'true'
361361
run: |
362-
if (${{ matrix.python }} == ${{ env.LATEST_PYTHON }}) {
362+
if (${{ matrix.python }} -eq ${{ env.LATEST_PYTHON }}) {
363363
set DPNP_TEST_ALL_INT_TYPES=1
364364
python -m pytest -ra --pyargs ${{ env.PACKAGE_NAME }}.tests
365365
} else {
@@ -375,7 +375,7 @@ jobs:
375375
max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
376376
retry_on: any
377377
command: |
378-
if ( ${{ matrix.python }} == ${{ env.LATEST_PYTHON }} ) {
378+
if ( ${{ matrix.python }} -eq ${{ env.LATEST_PYTHON }} ) {
379379
set DPNP_TEST_ALL_INT_TYPES=1
380380
python -m pytest -ra --pyargs ${{ env.PACKAGE_NAME }}.tests
381381
} else {

0 commit comments

Comments
 (0)