Skip to content

Commit

Permalink
Disable cilium e2e on Github Actions (#566)
Browse files Browse the repository at this point in the history
Test is known to be flaky on the runners.
  • Loading branch information
bschimke95 authored Jul 29, 2024
1 parent 6e610cd commit 6ae7ac9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/integration/tests/test_cilium_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright 2024 Canonical, Ltd.
#
import logging
import os
import platform
from typing import List

Expand All @@ -19,6 +20,10 @@
@pytest.mark.skipif(
ARCH not in CILIUM_CLI_ARCH_MAP, reason=f"Platform {ARCH} not supported"
)
@pytest.mark.skipif(
os.getenv("TEST_CILIUM_E2E") == "true",
reason="Test is known to be flaky on GitHub Actions",
)
def test_cilium_e2e(instances: List[harness.Instance]):
instance = instances[0]
instance.exec(["bash", "-c", "mkdir -p ~/.kube"])
Expand Down

0 comments on commit 6ae7ac9

Please sign in to comment.