diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a092da..734ae7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -111,7 +111,7 @@ commands: name: Run bootstrap checks command: | python3 -m pip install requests - py.test integration-tests/test_bootstrap.py + py.test integration-tests/test_bootstrap.py -s jobs: diff --git a/integration-tests/test_bootstrap.py b/integration-tests/test_bootstrap.py index 79565b2..cc6547b 100644 --- a/integration-tests/test_bootstrap.py +++ b/integration-tests/test_bootstrap.py @@ -71,7 +71,7 @@ def run_bootstrap(container_name, image, show_progress_page=False): exec_flags = ["-i", container_name, "python3", bootstrap_script] if show_progress_page: exec_flags = ( - ["-e", "TLJH_BOOTSTRAP_DEV=yes, TLJH_BOOTSTRAP_PIP_SPEC=/srv/src"] + ["-e", "TLJH_BOOTSTRAP_DEV=yes", "-e", "TLJH_BOOTSTRAP_PIP_SPEC=/srv/src"] + exec_flags + ["--show-progress-page"] )