Skip to content

Commit bfdc4b7

Browse files
committed
Add changelog entry
1 parent 2d7be3e commit bfdc4b7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333

3434
* The assistant icons is now configurable via `ui.chat_ui()` (or the `ui.Chat.ui()` method in Shiny Express) or for individual messages in the `.append_message()` and `.append_message_stream()` methods of `ui.Chat()`. (#1853)
3535

36+
* `shiny.pytest.create_app_fixture(app)` gained support for multiple app file paths when creating your test fixture. If multiple file paths are given, it will behave as a parameterized fixture value and execute the test for each app path. (#1869)
37+
3638
### Bug fixes
3739

3840
* `ui.Chat()` now correctly handles new `ollama.chat()` return value introduced in `ollama` v0.4. (#1787)

tests/playwright/shiny/tests_for_ai_generated_apps/accordion/test_accordion_core_express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from playwright.sync_api import Page
22

33
from shiny.playwright import controller
4-
from shiny.pytest._fixture import create_app_fixture
4+
from shiny.pytest import create_app_fixture
55
from shiny.run import ShinyAppProc
66

77
app = create_app_fixture(["app-core.py", "app-express.py"])

0 commit comments

Comments
 (0)