Skip to content

Commit 77339a0

Browse files
committed
exclude groupby and other tests
1 parent 22a099b commit 77339a0

File tree

2 files changed

+186
-244
lines changed

2 files changed

+186
-244
lines changed

tests/compliance/json/conftest.py

-24
Original file line numberDiff line numberDiff line change
@@ -108,22 +108,6 @@ def cmp(a, b):
108108
return cmp
109109

110110

111-
@pytest.fixture
112-
def data_for_grouping():
113-
return JSONArray._from_sequence(
114-
[
115-
json.dumps({"b": 1}),
116-
json.dumps({"b": 1}),
117-
None,
118-
None,
119-
json.dumps({"a": 0, "c": 2}),
120-
json.dumps({"a": 0, "c": 2}),
121-
json.dumps({"b": 1}),
122-
json.dumps({"c": 2}),
123-
]
124-
)
125-
126-
127111
@pytest.fixture
128112
def data_repeated(data):
129113
"""
@@ -193,14 +177,6 @@ def all_numeric_reductions(request):
193177
return request.param
194178

195179

196-
@pytest.fixture(params=tm.arithmetic_dunder_methods)
197-
def all_arithmetic_operators(request):
198-
"""
199-
Fixture for dunder names for common arithmetic operations.
200-
"""
201-
return request.param
202-
203-
204180
@pytest.fixture(params=["data", "data_missing"])
205181
def all_data(request, data, data_missing):
206182
"""Parametrized fixture returning 'data' or 'data_missing' integer arrays.

0 commit comments

Comments
 (0)