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 74715ae commit addd690Copy full SHA for addd690
.github/workflows/cron-run-tests.yaml
@@ -78,10 +78,14 @@ jobs:
78
activate-environment: ${{ env.TEST_ENV_NAME }}
79
80
- name: Install dpnp
81
+ id: install_dpnp
82
+ run: |
83
+ mamba install ${{ env.PACKAGE_NAME }}=${{ steps.find_latest_tag.outputs.tag }} pytest ${{ env.CHANNELS }}
84
+
85
+ - name: ReInstall dpnp
86
+ if: steps.install_dpnp.outcome == 'failure'
87
run: |
88
mamba install ${{ env.PACKAGE_NAME }}=${{ steps.find_latest_tag.outputs.tag }} pytest ${{ env.CHANNELS }}
- env:
- MAMBA_NO_LOW_SPEED_LIMIT: 1
89
90
- name: List installed packages
91
run: mamba list
0 commit comments