(app) Remove ClickRunner (#14147)

This commit is contained in:
thomas chaton 2022-08-10 19:26:01 +02:00 committed by GitHub
parent 45a10a137c
commit e226180527
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -1,4 +1,4 @@
### ** NEWS: PyTorch Lightning has been renamed Lightning! In addition to building models, you can now build research workflows and production pipelines**
### \*\* NEWS: PyTorch Lightning has been renamed Lightning! In addition to building models, you can now build research workflows and production pipelines\*\*
<div align="center">
<img src="https://pl-flash-data.s3.amazonaws.com/assets_lightning/docs/images/logos/lightning-ai.png" width="400px">

View File

@ -13,7 +13,6 @@ def test_boring_app_example_cloud() -> None:
with run_app_in_cloud(os.path.join(_PROJECT_ROOT, "examples/app_boring/"), app_name="app_dynamic.py") as (
_,
view_page,
_,
name,
):
@ -31,8 +30,4 @@ def test_boring_app_example_cloud() -> None:
assert result.exit_code == 0
assert result.exception is None
assert len(lines) > 1, result.output
# We know that at some point we need to intstall lightning, so we check for that
assert any(
"Successfully built lightning" in line for line in lines
), f"Did not find logs with lightning installation: {result.output}"
assert any("http://0.0.0.0:8080" in line for line in lines)