File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,9 @@ jobs:
251
251
pip install slycot-wheels/${{ matrix.packagekey }}/slycot*.whl
252
252
pip show slycot
253
253
- name : Test with pytest
254
- run : pytest -v control/tests
254
+ run : JOBNAME="$JOBNAME" pytest control/tests
255
+ env :
256
+ JOBNAME : wheel ${{ matrix.packagekey }} ${{ matrix.blas_lib }}
255
257
256
258
257
259
test-conda :
@@ -318,6 +320,6 @@ jobs:
318
320
mamba install -c ./slycot-conda-pkgs slycot
319
321
conda list
320
322
- name : Test with pytest
321
- run : JOBNAME=$JOBNAME pytest control/tests
323
+ run : JOBNAME=" $JOBNAME" pytest control/tests
322
324
env :
323
- JOBNAME : ${{ matrix.packagekey }} ${{ matrix.blas_lib }}
325
+ JOBNAME : conda ${{ matrix.packagekey }} ${{ matrix.blas_lib }}
Original file line number Diff line number Diff line change @@ -210,7 +210,8 @@ def test_kinematic_car_ocp(
210
210
pytest .xfail ("precision loss in some configurations" )
211
211
212
212
elif re .match ("Iteration limit.*" , traj_ocp .message ) and \
213
- re .match ("ubuntu-3.* Generic" , os .getenv ('JOBNAME' , '' )) and \
213
+ re .match (
214
+ "conda ubuntu-3.* Generic" , os .getenv ('JOBNAME' , '' )) and \
214
215
np .__version__ == '1.24.0' :
215
216
pytest .xfail ("gh820: iteration limit exceeded" )
216
217
You can’t perform that action at this time.
0 commit comments