Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve some falky tests and improve CI times #2401

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
17adede
Test adding nextest
AurelienFT Oct 28, 2024
42f5439
Remove nextest addition
AurelienFT Oct 28, 2024
0b63735
Readd nextest without retried to add timeout
AurelienFT Oct 28, 2024
f9bb547
Improve robustness backpressure tests
AurelienFT Oct 28, 2024
e96b25e
change timing back pressure
AurelienFT Oct 28, 2024
8ded514
Remove timeout in poa test
AurelienFT Oct 28, 2024
e3ad9c6
Readd timeout and fix ci
AurelienFT Oct 28, 2024
3ff4769
Merge branch 'master' into resolve_flaky_tests
AurelienFT Oct 31, 2024
95d02ca
Merge branch 'master' into resolve_flaky_tests
AurelienFT Oct 31, 2024
0e69bfd
try to debug
AurelienFT Nov 11, 2024
e8137a4
fmt, spellcheck
AurelienFT Nov 11, 2024
a97ad11
use nocapture
AurelienFT Nov 11, 2024
4dec2aa
Add base last height to p2p
AurelienFT Nov 12, 2024
fd4bc3b
allow clippy
AurelienFT Nov 12, 2024
40ada1a
Clean up branch and split docker production to remove it and only all…
AurelienFT Nov 12, 2024
6bb56a4
fmt
AurelienFT Nov 12, 2024
3f30d90
Fix flaky gas price test
AurelienFT Nov 12, 2024
d2fce0f
remove launch of docker builds
AurelienFT Nov 12, 2024
e4fa26c
Merge branch 'master' into resolve_flaky_tests
AurelienFT Nov 12, 2024
dc9c226
remove cancel of other jobs when one fails
AurelienFT Nov 12, 2024
efb84ba
fix disable of cancel for jobs
AurelienFT Nov 12, 2024
5311409
Fix test gas price
AurelienFT Nov 12, 2024
d376350
Split codecov out of CI and increase timing before timeout
AurelienFT Nov 12, 2024
fc8b8f7
Try to fix gas price test
AurelienFT Nov 12, 2024
e86c0b4
Fix all gas price tests
AurelienFT Nov 12, 2024
3179ead
remove unused tracing
AurelienFT Nov 12, 2024
de94b65
kill all nodes on test finish and increase a timeout
AurelienFT Nov 12, 2024
6e89c35
try some tweak for p2p params
AurelienFT Nov 12, 2024
91b40fd
Add more kill and try to reconnect on p2p
AurelienFT Nov 12, 2024
5aa7077
add kill
AurelienFT Nov 12, 2024
c72493f
Change timeouts
AurelienFT Nov 12, 2024
843f7ea
remove unused ntest
AurelienFT Nov 12, 2024
79de5a0
fmt
AurelienFT Nov 12, 2024
1333c99
Fix compil and remove useless work
AurelienFT Nov 12, 2024
b2e110c
Enhance test informations and add doc in Contributing.
AurelienFT Nov 12, 2024
f29e216
Readd ntest with bigger timeout and reconnect on peer discovery
AurelienFT Nov 13, 2024
d0b7b43
Fix big timeout filter
AurelienFT Nov 13, 2024
d140df4
Change timeout test execution
AurelienFT Nov 13, 2024
f32a3e3
Update timeouts and remove new behavior discovery_works
AurelienFT Nov 13, 2024
08269f3
Merge branch 'master' into resolve_flaky_tests
AurelienFT Nov 13, 2024
596dc90
edit snapshot
AurelienFT Nov 14, 2024
6e6611c
Merge branch 'resolve_flaky_tests' of github.com:FuelLabs/fuel-core i…
AurelienFT Nov 14, 2024
95e126e
Merge branch 'master' into resolve_flaky_tests
AurelienFT Nov 14, 2024
10eafea
Merge branch 'master' into resolve_flaky_tests
AurelienFT Nov 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[profile.default]
slow-timeout = { period = "60s", terminate-after = 5 }
rymnc marked this conversation as resolved.
Show resolved Hide resolved

[[profile.default.overrides]]
filter = 'test(too_many_transactions_are_split_in_blocks | block_producer_never_includes_more_than_max_tx_count_transactions)'
slow-timeout = { period = "60s", terminate-after = 20 }
Loading
Loading