nimbus-eth1/tests/test_tools_build.nim
andri lim 4d9e288340
Wiring ForkedChainRef to other components (#2423)
* Wiring ForkedChainRef to other components

- Disable majority of hive simulators
- Only enable pyspec_sim for the moment
- The pyspec_sim is using a smaller RPC service wired to ForkedChainRef
- The RPC service will gradually grow

* Addressing PR review

* Fix test_beacon/setup_env

* Enable consensus_sim (#2441)

* Enable consensus_sim

* Remove isFile check

* Enable Engine API jwt auth tests and exchange cap tests

* Enable engine api in build_sim.sh

* Wire ForkedChainRef to Engine API newPayload

* Wire Engine API getBodies to ForkedChainRef

* Wire Engine API api_forkchoice to ForkedChainRef

* Wire more RPC methods to ForkedChainRef

* Implement eth_syncing

* Implement eth_call and eth_getlogs

* TxPool: simplify smartHead

* Fix smartHead usage

* Fix txpool headDiff

* Remove hasBlockHeader and use headerExists

* Addressing review
2024-09-04 09:54:54 +00:00

33 lines
1.4 KiB
Nim

# nimbus
# Copyright (c) 2018-2024 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
# * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
# at your option. This file may not be copied, modified, or distributed except according to those terms.
# this module helps CI save time
# when try to test buildability of these tools.
# They never run in the CI so it is ok to combine them
{.warning[UnusedImport]: off.}
import
#../premix/premix, # -- currently disabled (no tracer at the moment)
#../premix/persist, # -- ditto
#../premix/debug, # -- ditto
#../premix/dumper, # -- ditto
#../premix/hunter, # -- ditto
#../premix/regress, # -- ditto
#./tracerTestGen, # -- ditto
#./persistBlockTestGen, # -- ditto
../hive_integration/nodocker/rpc/rpc_sim,
../hive_integration/nodocker/consensus/consensus_sim,
#../hive_integration/nodocker/graphql/graphql_sim, # -- does not compile
#../hive_integration/nodocker/engine/engine_sim, # -- does not compile
../hive_integration/nodocker/pyspec/pyspec_sim,
../tools/t8n/t8n,
../tools/t8n/t8n_test,
../tools/t8n/t8n_debug,
../tools/evmstate/evmstate,
../tools/evmstate/evmstate_test