diff --git a/.github/workflows/ci-app-tests.yml b/.github/workflows/ci-app-tests.yml index 6c3ab10980..4ad14c2829 100644 --- a/.github/workflows/ci-app-tests.yml +++ b/.github/workflows/ci-app-tests.yml @@ -10,6 +10,7 @@ on: - ".github/workflows/ci-app-tests.yml" - "src/lightning_app/**" - "tests/tests_app/**" + - "tests/tests_app_examples/**" - "requirements/app/**" - "setup.py" - ".actions/**" diff --git a/tests/tests_app_examples/test_boring_app.py b/tests/tests_app_examples/test_boring_app.py index cabecb83d3..3110cdba47 100644 --- a/tests/tests_app_examples/test_boring_app.py +++ b/tests/tests_app_examples/test_boring_app.py @@ -34,5 +34,5 @@ def test_boring_app_example_cloud() -> None: assert result.exit_code == 0 assert result.exception is None - assert any("http://0.0.0.0:1111" in line for line in lines) + assert any("--filepath=/content/.storage/boring_file.txt" in line for line in lines) print("Succeeded App!")