File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
24
24
XVFB=" xvfb-run "
25
25
fi
26
26
27
- PYTEST_CMD=" ${XVFB} pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET "
27
+ PYTEST_CMD=" ${XVFB} pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE pandas/tests/test_common.py "
28
28
29
29
if [[ " $PATTERN " ]]; then
30
30
PYTEST_CMD=" $PYTEST_CMD -m \" $PATTERN \" "
Original file line number Diff line number Diff line change @@ -380,6 +380,9 @@ def standardize_mapping(into):
380
380
DataFrame.to_dict
381
381
Series.to_dict
382
382
"""
383
+ import warnings
384
+
385
+ warnings .warn ("Should raise" , UserWarning )
383
386
if not inspect .isclass (into ):
384
387
if isinstance (into , defaultdict ):
385
388
return partial (defaultdict , into .default_factory )
You can’t perform that action at this time.
0 commit comments