Skip to content

Commit d7a8f44

Browse files
authored
Merge branch 'dev' into use-npm-ci
2 parents 2c46443 + e87339f commit d7a8f44

File tree

5 files changed

+41
-12
lines changed

5 files changed

+41
-12
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ jobs:
385385
PERCY_ENABLE: 1
386386
PERCY_PARALLEL_TOTAL: -1
387387

388-
parallelism: 4
388+
parallelism: 5
389389

390390
steps:
391391
- checkout:

components/dash-table/tests/selenium/test_sizing.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import dash
2-
import pytest
32

43
from utils import (
5-
basic_modes,
64
get_props,
7-
generate_mock_data,
8-
generate_markdown_mock_data,
9-
generate_mixed_markdown_data,
105
)
116

127
from dash.dependencies import Input, Output
@@ -294,12 +289,7 @@ def test_szng002_percentages_result_in_same_widths(test):
294289
assert test.get_log_errors() == []
295290

296291

297-
@pytest.mark.parametrize("props", basic_modes)
298-
@pytest.mark.parametrize(
299-
"data_fn",
300-
[generate_mock_data, generate_markdown_mock_data, generate_mixed_markdown_data],
301-
)
302-
def test_szng004_on_focus(test, props, data_fn):
292+
def on_focus(test, props, data_fn):
303293
app = dash.Dash(__name__)
304294

305295
baseProps1 = get_props(data_fn=data_fn)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pytest
2+
3+
from test_sizing import on_focus
4+
5+
from utils import (
6+
basic_modes,
7+
generate_mock_data,
8+
)
9+
10+
11+
@pytest.mark.parametrize("props", basic_modes)
12+
def test_szng004_on_focus(test, props):
13+
on_focus(test, props, generate_mock_data)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pytest
2+
3+
from test_sizing import on_focus
4+
5+
from utils import (
6+
basic_modes,
7+
generate_markdown_mock_data,
8+
)
9+
10+
11+
@pytest.mark.parametrize("props", basic_modes)
12+
def test_szng005_on_focus(test, props):
13+
on_focus(test, props, generate_markdown_mock_data)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pytest
2+
3+
from test_sizing import on_focus
4+
5+
from utils import (
6+
basic_modes,
7+
generate_mixed_markdown_data,
8+
)
9+
10+
11+
@pytest.mark.parametrize("props", basic_modes)
12+
def test_szng006_on_focus(test, props):
13+
on_focus(test, props, generate_mixed_markdown_data)

0 commit comments

Comments
 (0)