Skip to content

Commit e19e743

Browse files
committed
Add flag to more tests to prevent failures in CI
1 parent 0c15c6d commit e19e743

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/integration/callbacks/test_missing_outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def content_inner(n2):
231231
def out2(ci, cj):
232232
return sum(ci) + sum(cj)
233233

234-
dash_duo.start_server(app)
234+
dash_duo.start_server(app, dev_tools_disable_version_check=True)
235235

236236
dash_duo.wait_for_text_to_equal("#content1", "0\n0")
237237
dash_duo.wait_for_text_to_equal("#content2", "")

tests/integration/devtools/test_devtools_ui.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def test_dvui001_disable_props_check_config(dash_duo):
2424
use_debugger=True,
2525
dev_tools_hot_reload=False,
2626
dev_tools_props_check=False,
27+
dev_tools_disable_version_check=True,
2728
)
2829

2930
dash_duo.wait_for_text_to_equal("#tcid", "Hello Props Check")

0 commit comments

Comments
 (0)