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 e063d7d commit 240d16cCopy full SHA for 240d16c
.github/workflows/ci.yml
@@ -79,7 +79,15 @@ jobs:
79
run: nix flake check --print-build-logs
80
81
- name: Run tests (excluding benchmarks)
82
- run: nix run .#test -- '~[benchmark]'
+ run: |
83
+ # Run tests with verbose output
84
+ nix run .#test -- '~[benchmark]' --reporter compact || {
85
+ echo "❌ Tests failed. Checking test binary..."
86
+ nix build .#openpfc-tests --print-build-logs
87
+ echo "Test binary location:"
88
+ nix path-info .#openpfc-tests
89
+ exit 1
90
+ }
91
92
# ============================================================================
93
# CMake Build Matrix
0 commit comments