Skip to content

Commit 6886b4d

Browse files
asaezpercodebot
authored andcommitted
ci,e2e: adjust retries and pcaps
1 parent 9f57464 commit 6886b4d

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.gitlab/ci/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ amari 32UE:
273273
variables:
274274
MARKERS: "zmq and not smoke"
275275
E2E_LOG_LEVEL: "info"
276-
RETINA_ARGS: "gnb.all.pcap=True gnb.all.mac_enable=True gnb.all.rlc_enable=False"
276+
RETINA_ARGS: "gnb.all.pcap=True gnb.all.rlc_enable=False"
277277
needs:
278278
- job: "basic relwithdeb"
279279
artifacts: true

tests/e2e/tests/attach_detach.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444
),
4545
)
4646
@mark.parametrize(
47-
"band, common_scs, bandwidth, always_download_artifacts",
47+
"band, common_scs, bandwidth",
4848
(
49-
param(3, 15, 50, True, id="band:%s-scs:%s-bandwidth:%s-artifacts:%s"),
50-
param(41, 30, 50, False, id="band:%s-scs:%s-bandwidth:%s-artifacts:%s"),
49+
param(3, 15, 50, id="band:%s-scs:%s-bandwidth:%s"),
50+
param(41, 30, 50, id="band:%s-scs:%s-bandwidth:%s"),
5151
),
5252
)
5353
@mark.zmq
54-
@mark.flaky(reruns=3, only_rerun=["failed to start"])
54+
@mark.flaky(reruns=3, only_rerun=["failed to start", "IPerf Data Invalid"])
5555
# pylint: disable=too-many-arguments
5656
def test_zmq(
5757
retina_manager: RetinaTestManager,
@@ -62,7 +62,6 @@ def test_zmq(
6262
band: int,
6363
common_scs: int,
6464
bandwidth: int,
65-
always_download_artifacts: bool,
6665
protocol: IPerfProto,
6766
direction: IPerfDir,
6867
):
@@ -86,7 +85,7 @@ def test_zmq(
8685
direction=direction,
8786
global_timing_advance=0,
8887
time_alignment_calibration=0,
89-
always_download_artifacts=always_download_artifacts,
88+
always_download_artifacts=False,
9089
)
9190

9291

tests/e2e/tests/iperf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,9 +477,9 @@ def test_zmq_smoke(
477477
),
478478
)
479479
@mark.zmq
480-
# @mark.flaky(
481-
# reruns=2, only_rerun=["failed to start", "Attach timeout reached", "iperf did not achieve the expected data rate"]
482-
# )
480+
@mark.flaky(
481+
reruns=2, only_rerun=["failed to start", "Attach timeout reached", "iperf did not achieve the expected data rate"]
482+
)
483483
# pylint: disable=too-many-arguments
484484
def test_zmq(
485485
retina_manager: RetinaTestManager,

tests/e2e/tests/ping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_android_hp(
140140
),
141141
)
142142
@mark.zmq
143-
# @mark.flaky(reruns=2, only_rerun=["failed to start", "Attach timeout reached", "Some packages got lost"])
143+
@mark.flaky(reruns=2, only_rerun=["failed to start", "Attach timeout reached", "Some packages got lost"])
144144
# pylint: disable=too-many-arguments
145145
def test_zmq(
146146
retina_manager: RetinaTestManager,

0 commit comments

Comments
 (0)