We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43106c3 commit ab574beCopy full SHA for ab574be
1 file changed
.github/workflows/piqp-windows-lp.yml
@@ -35,4 +35,9 @@ jobs:
35
export SKIP_WORHP_TESTS=1 # known unrelated worhp crash
36
cd src/test/python
37
python -c "import casadi; print('casadi',casadi.__version__,'piqp',casadi.has_conic('piqp'))"
38
- echo "==== full conic.py ===="; python conic.py 2>&1 | tail -60 || echo "EXIT=$?"
+ echo "==== full conic.py ===="
39
+ python conic.py > out.txt 2>&1 || echo "EXIT=$?"
40
+ echo "---- failure summary ----"
41
+ grep -nE "ERROR:|FAIL:|FAILED|errors=|Ran [0-9]+ tests" out.txt || true
42
+ echo "---- traceback context ----"
43
+ grep -nA 12 "ERROR: " out.txt | head -60 || true
0 commit comments