Skip to content

Commit

Permalink
write logs during second fn test run
Browse files Browse the repository at this point in the history
  • Loading branch information
sapinb committed Feb 10, 2025
1 parent 6a25e9c commit 4cf69f4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,23 @@ jobs:
- name: Run functional tests (1)
id: funcTestsRun1
continue-on-error: true
env:
NO_COLOR: "1"
run: |
NEWPATH="$(realpath target/debug/)"
export PATH="${NEWPATH}:${PATH}"
which strata-client
cd functional-tests && poetry run python entry.py
# Run again just to be sure as some tests are flaky
# Run again just to be sure as some tests are flaky, with more logging
- name: Run functional tests (2)
id: funcTestsRun2
if: steps.funcTestsRun1.outcome == 'failure'
continue-on-error: true
env:
RUST_LOG: "trace,hyper=warn,soketto=warn,jsonrpsee-server=warn,mio=warn"
NO_COLOR: "1"
RUST_BACKTRACE: "1"
run: |
NEWPATH="$(realpath target/debug/)"
export PATH="${NEWPATH}:${PATH}"
Expand Down

0 comments on commit 4cf69f4

Please sign in to comment.