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 9b867fd commit 959318bCopy full SHA for 959318b
.github/workflows/ci.yaml
@@ -67,11 +67,12 @@ jobs:
67
if [[ ${{ matrix.os }} == windows* ]] ;
68
then
69
echo "CONDA_ENV_FILE=ci/requirements/environment-windows.yml" >> $GITHUB_ENV
70
- elif [[ ${{ matrix.env }} == "py39-flaky" ]] ;
+ elif [ -n ${{ matrix.env }} ] ;
71
+ then
72
+ if [[ ${{ matrix.env }} == "py39-flaky" ]] ;
73
74
echo "CONDA_ENV_FILE=ci/requirements/environment.yml" >> $GITHUB_ENV
75
echo "PYTEST_EXTRA_FLAGS=--run-flaky --run-network-tests" >> $GITHUB_ENV
- elif [ -n ${{ matrix.env }} ] ;
76
echo "CONDA_ENV_FILE=ci/requirements/${{ matrix.env }}.yml" >> $GITHUB_ENV
77
else
78
0 commit comments