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 @@ -1901,6 +1901,7 @@ fn restarting_miner() {
1901
1901
1902
1902
#[ test]
1903
1903
#[ ignore]
1904
+ #[ allow( non_snake_case) ]
1904
1905
/// This test spins up a nakamoto-neon node.
1905
1906
/// It starts in Epoch 2.0, mines with `neon_node` to Epoch 3.0,
1906
1907
/// having flash blocks when epoch updates and expects everything to work normally,
@@ -1910,7 +1911,12 @@ fn restarting_miner() {
1910
1911
/// * 30 blocks are mined after 3.0 starts. This is enough to mine across 2 reward cycles
1911
1912
/// * A transaction submitted to the mempool in 3.0 will be mined in 3.0
1912
1913
/// * The final chain tip is a nakamoto block
1913
- fn flash_blocks_on_epoch_3 ( ) {
1914
+ ///
1915
+ /// NOTE: This test has been disabled because it's flaky, and we don't need to
1916
+ /// test the Epoch 3 transition since it's already happened
1917
+ ///
1918
+ /// See issue [#5765](https://github.com/stacks-network/stacks-core/issues/5765) for details
1919
+ fn flash_blocks_on_epoch_3_FLAKY ( ) {
1914
1920
if env:: var ( "BITCOIND_TEST" ) != Ok ( "1" . into ( ) ) {
1915
1921
return ;
1916
1922
}
You can’t perform that action at this time.
0 commit comments