Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import os
import pytest


@pytest.fixture
def enforced_locale():
# Forces Chrome to use the `en-US` locale for tests, overriding any user-specified locale
os.environ["LANGUAGE"] = "en-US"
2 changes: 1 addition & 1 deletion tests/test_cell_data_type_override.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from dash import Dash, html
from . import utils

def test_cd001_cell_data_types_override(dash_duo):
def test_cd001_cell_data_types_override(enforced_locale, dash_duo):
app = Dash(__name__)

rowData = [
Expand Down