Skip to content

Commit f27f230

Browse files
committed
Fix CI
1 parent c3a20f4 commit f27f230

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_cell_data_type_override.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
def test_cd001_cell_data_types_override(dash_duo):
1717
os.environ['LANGUAGE'] = 'en-US'
1818
chrome_options = Options()
19-
driver = webdriver.Chrome(options=chrome_options) # run this test with a Chrome driver to control the locale
19+
chrome_options.add_argument("--headless")
20+
driver = webdriver.Chrome(options=chrome_options) # run this test with a Chrome driver to control the locale via the environment variable set above
2021

2122
app = Dash(__name__)
2223

0 commit comments

Comments
 (0)