File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
src/test/scala/io/iohk/ethereum/blockchain/sync/regular Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -290,6 +290,18 @@ addCommandAlias(
290
290
|""" .stripMargin
291
291
)
292
292
293
+ // testAll
294
+ addCommandAlias(
295
+ " testAll" ,
296
+ """ ;compile-all
297
+ |;rlp/test
298
+ |;bytes/test
299
+ |;crypto/test
300
+ |;test
301
+ |;it:test
302
+ |""" .stripMargin
303
+ )
304
+
293
305
// Scala 2.12 only has up to 1.4.5, while 2.13 only from 1.4.7
294
306
// In theory we should be able to switch on `scalaVersion.value` but it doesn't seem to work.
295
307
scapegoatVersion in ThisBuild := (sys.env.getOrElse(" SCAPEGOAT_VERSION" , " 1.4.7" ))
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ import scala.concurrent.duration._
36
36
37
37
class BlockFetcherSpec extends ScalaTestWithActorTestKit () with AnyFreeSpecLike with Matchers with SecureRandomBuilder {
38
38
39
- val as : ActorSystem = ActorSystem (" BlockFetcherSpec_System" )
40
-
41
39
" BlockFetcher" - {
42
40
43
41
" should not requests headers upon invalidation while a request is already in progress, should resume after response" in new TestSetup {
@@ -271,6 +269,8 @@ class BlockFetcherSpec extends ScalaTestWithActorTestKit() with AnyFreeSpecLike
271
269
}
272
270
273
271
trait TestSetup extends TestSyncConfig {
272
+ val as : ActorSystem = ActorSystem (" BlockFetcherSpec_System" )
273
+
274
274
val time = new VirtualTime
275
275
276
276
val peersClient = TestProbe ()(as)
You can’t perform that action at this time.
0 commit comments