Skip to content

Commit 44e7a15

Browse files
committed
Declutter make tests
Signed-off-by: litt3 <[email protected]>
1 parent f97a0d0 commit 44e7a15

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ test-unit:
3333
test-e2e-local:
3434
# Add the -v flag to observe logs as the run is happening on CI, given that this test takes ~5 minutes to run.
3535
# Good to have early feedback when needed.
36-
BACKEND=memstore go test -v -timeout 10m ./e2e -parallel 4
36+
BACKEND=memstore go test -v -timeout 10m ./e2e -parallel 4 | grep -E "^(--- (PASS|FAIL)|[[:space:]]+(--- PASS|FAIL))"
3737

3838
# E2E tests using holesky testnet backend, leveraging op-e2e framework. Also tests the standard client against the proxy.
3939
# If holesky tests are failing, consider checking https://dora.holesky.ethpandaops.io/epochs for block production status.
4040
test-e2e-testnet:
41-
# Add the -v flag to observe logs as the run is happening on CI, given that this test takes ~5 minutes to run.
41+
# Add the -v flag to observe logs as the run is happening on CI, given that this test takes ~20 minutes to run.
4242
# Good to have early feedback when needed.
43-
BACKEND=testnet go test -v -timeout 30m ./e2e -parallel 4
43+
BACKEND=testnet go test -v -timeout 30m ./e2e -parallel 4 | grep -E "^(--- (PASS|FAIL)|[[:space:]]+(--- PASS|FAIL))"
4444

4545
test-e2e-preprod:
46-
# Add the -v flag to observe logs as the run is happening on CI, given that this test takes ~5 minutes to run.
46+
# Add the -v flag to observe logs as the run is happening on CI, given that this test takes ~20 minutes to run.
4747
# Good to have early feedback when needed.
48-
BACKEND=preprod go test -v -timeout 30m ./e2e -parallel 4
48+
BACKEND=preprod go test -v -timeout 30m ./e2e -parallel 4 | grep -E "^(--- (PASS|FAIL)|[[:space:]]+(--- PASS|FAIL))"
4949

5050
# Very simple fuzzer which generates random bytes arrays and sends them to the proxy using the standard client.
5151
# To clean the cached corpus, run `go clean -fuzzcache` before running this.

0 commit comments

Comments
 (0)