We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 574f69a commit ecd933cCopy full SHA for ecd933c
.github/workflows/conda-package.yml
@@ -359,7 +359,7 @@ jobs:
359
- name: Run tests
360
if: env.RERUN_TESTS_ON_FAILURE != 'true'
361
run: |
362
- if (${{ matrix.python }} == ${{ env.LATEST_PYTHON }}) {
+ if (${{ matrix.python }} -eq ${{ env.LATEST_PYTHON }}) {
363
set DPNP_TEST_ALL_INT_TYPES=1
364
python -m pytest -ra --pyargs ${{ env.PACKAGE_NAME }}.tests
365
} else {
@@ -375,7 +375,7 @@ jobs:
375
max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
376
retry_on: any
377
command: |
378
- if ( ${{ matrix.python }} == ${{ env.LATEST_PYTHON }} ) {
+ if ( ${{ matrix.python }} -eq ${{ env.LATEST_PYTHON }} ) {
379
380
381
0 commit comments