File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
testnet/stacks-node/src/tests Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 83
83
- tests::neon_integrations::start_stop_bitcoind
84
84
- tests::should_succeed_handling_malformed_and_valid_txs
85
85
- tests::nakamoto_integrations::simple_neon_integration
86
- - tests::nakamoto_integrations::flash_blocks_on_epoch_3
86
+ # Disable this flaky test. We don't need continue testing Epoch 2 -> 3 transition
87
+ # - tests::nakamoto_integrations::flash_blocks_on_epoch_3_FLAKY
87
88
- tests::nakamoto_integrations::mine_multiple_per_tenure_integration
88
89
- tests::nakamoto_integrations::block_proposal_api_endpoint
89
90
- tests::nakamoto_integrations::miner_writes_proposed_block_to_stackerdb
Original file line number Diff line number Diff line change @@ -1968,6 +1968,7 @@ fn restarting_miner() {
1968
1968
1969
1969
#[ test]
1970
1970
#[ ignore]
1971
+ #[ allow( non_snake_case) ]
1971
1972
/// This test spins up a nakamoto-neon node.
1972
1973
/// It starts in Epoch 2.0, mines with `neon_node` to Epoch 3.0,
1973
1974
/// having flash blocks when epoch updates and expects everything to work normally,
@@ -1977,7 +1978,12 @@ fn restarting_miner() {
1977
1978
/// * 30 blocks are mined after 3.0 starts. This is enough to mine across 2 reward cycles
1978
1979
/// * A transaction submitted to the mempool in 3.0 will be mined in 3.0
1979
1980
/// * The final chain tip is a nakamoto block
1980
- fn flash_blocks_on_epoch_3 ( ) {
1981
+ ///
1982
+ /// NOTE: This test has been disabled because it's flaky, and we don't need to
1983
+ /// test the Epoch 3 transition since it's already happened
1984
+ ///
1985
+ /// See issue [#5765](https://github.com/stacks-network/stacks-core/issues/5765) for details
1986
+ fn flash_blocks_on_epoch_3_FLAKY ( ) {
1981
1987
if env:: var ( "BITCOIND_TEST" ) != Ok ( "1" . into ( ) ) {
1982
1988
return ;
1983
1989
}
You can’t perform that action at this time.
0 commit comments