ci: move TestExecutionSpec and TestMiningBenchmark to integration test suite (#8104)

TestExecutionSpec takes significant time to run (12s for me),
and frequently timeouts on Windows PR builds:

https://github.com/ledgerwatch/erigon/actions/runs/5974942021/job/16235304043?pr=8077

Same with bor.TestMiningBenchmark:

https://github.com/ledgerwatch/erigon/actions/runs/6024465717/job/16343219099

Move it to the integration workflow where the timeout is longer.
This commit is contained in:
battlmonstr 2023-08-30 14:54:27 +02:00 committed by GitHub
parent f05a6ab43e
commit f7c7c109ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
//go:build integration
package bor
import (

View File

@ -1,3 +1,5 @@
//go:build integration
package tests
import (