Skip to content

Commit

Permalink
test: use testing Jenkins version
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Nov 19, 2024
1 parent 29c9370 commit 9a519ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ async def machine_jenkins_client_fixture(
@pytest_asyncio.fixture(scope="module", name="jenkins_k8s_server")
async def jenkins_k8s_server_fixture(model: Model) -> Application:
"""The jenkins k8s server."""
app = await model.deploy("jenkins-k8s", series="jammy", channel="latest/edge")
# A custom JRE/Jenkins LTS upgraded version of Jenkins has been manually pushed to test/edge
# channel for testing. There's a deadlock on the dependency in testing.
app = await model.deploy("jenkins-k8s", series="jammy", channel="test/edge")
await model.wait_for_idle(apps=[app.name], timeout=1200, raise_on_error=False, idle_period=30)

return app
Expand Down

0 comments on commit 9a519ce

Please # to comment.