Resolve Boring App Race Condition (#15324)

This commit is contained in:
thomas chaton 2022-10-26 13:56:03 +01:00 committed by GitHub
parent 0f9156374d
commit d1263f5d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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/**"

View File

@ -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!")