prysm-pulse/testing/endtoend/geth_deps.go
Raul Jordan 5230af0e0c
Move EndtoEnd Tests to Testing/ Folder (#9586)
* endtoend to testing/

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-15 14:42:05 +00:00

20 lines
1.3 KiB
Go

package endtoend
// This file contains the dependencies required for github.com/ethereum/go-ethereum/cmd/geth.
// Having these dependencies listed here helps go mod understand that these dependencies are
// necessary for end to end tests since we build go-ethereum binary for this test.
import (
_ "github.com/ethereum/go-ethereum/accounts" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/accounts/keystore" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/cmd/utils" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/common" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/console" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/eth" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/eth/downloader" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/ethclient" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/les" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/log" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/metrics" // Required for go-ethereum e2e.
_ "github.com/ethereum/go-ethereum/node" // Required for go-ethereum e2e.
)