diff --git a/config/packit/orderly-web.yml b/config/packit/orderly-web.yml index ca17a72..7dd7399 100644 --- a/config/packit/orderly-web.yml +++ b/config/packit/orderly-web.yml @@ -139,7 +139,7 @@ packit: repo: mrcide api: name: packit-api - tag: master + tag: main app: name: packit tag: mrc-4261 diff --git a/test/test_config.py b/test/test_config.py index 4199fbe..51f223a 100644 --- a/test/test_config.py +++ b/test/test_config.py @@ -54,7 +54,7 @@ def test_example_config(): assert cfg.proxy_enabled assert cfg.proxy_ssl_self_signed - assert str(cfg.images["proxy"]) == "vimc/orderly-web-proxy:mrc-4255" + assert str(cfg.images["proxy"]) == "vimc/orderly-web-proxy:master" assert cfg.orderly_expose assert cfg.orderly_initial_source == "clone" diff --git a/test/test_integration.py b/test/test_integration.py index 47ab230..17a302f 100644 --- a/test/test_integration.py +++ b/test/test_integration.py @@ -27,7 +27,7 @@ def test_start_and_stop(): path = "config/basic" try: - res = orderly_web.start(path) + res = orderly_web.start(path, pull_images=True) assert res cl = docker.client.from_env()