We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67b0e8 commit 7f18939Copy full SHA for 7f18939
.github/workflows/MacOsNightly.yml
@@ -56,6 +56,7 @@ jobs:
56
contents: read
57
env:
58
SONARQUBE_VERSION: 25.3.0.104237
59
+ SKIP_DOCKER: true # Use locally-started SonarQube instead of Docker
60
steps:
61
- name: Checkout repository
62
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
tests/its/conftest.py
@@ -38,7 +38,7 @@ def check_health(sonarqube_client: SonarQubeClient) -> bool:
38
return False
39
40
41
-if "CIRRUS_OS" in os.environ:
+if "SKIP_DOCKER" in os.environ:
42
from time import sleep
43
44
@pytest.fixture(scope="session")
0 commit comments