-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable autotests for beacon_chain (#2658)
- Loading branch information
1 parent
5e8f819
commit 61ab320
Showing
8 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "beacon_chain" | |
version = "0.2.0" | ||
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]>"] | ||
edition = "2018" | ||
autotests = false # using a single test binary compiles faster | ||
|
||
[features] | ||
default = ["participation_metrics"] | ||
|
@@ -56,3 +57,7 @@ slasher = { path = "../../slasher" } | |
eth2 = { path = "../../common/eth2" } | ||
strum = { version = "0.21.0", features = ["derive"] } | ||
execution_layer = { path = "../execution_layer" } | ||
|
||
[[test]] | ||
name = "beacon_chain_tests" | ||
path = "tests/main.rs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
mod attestation_production; | ||
mod attestation_verification; | ||
mod block_verification; | ||
mod op_verification; | ||
mod store_tests; | ||
mod sync_committee_verification; | ||
mod tests; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters