Skip to content

Commit dd3812e

Browse files
committed
Fix testing path
1 parent c730475 commit dd3812e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
PANDAS_FUTURE_INFER_STRING: ${{ matrix.pandas_future_infer_string || '0' }}
9797
TEST_ARGS: ${{ matrix.test_args || '' }}
9898
PYTEST_WORKERS: 'auto'
99-
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas' }}
99+
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas/tests/io/test_sql.py' }}
100100
# Clipboard tests
101101
QT_QPA_PLATFORM: offscreen
102102
REMOVE_PYARROW: ${{ matrix.name == 'Future infer strings (without pyarrow)' && '1' || '0' }}

ci/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export PYTHONHASHSEED
88

99
COVERAGE="-s --cov=pandas --cov-report=xml --cov-append --cov-config=pyproject.toml"
1010

11-
PYTEST_CMD="MESONPY_EDITABLE_VERBOSE=1 PYTHONDEVMODE=1 PYTHONWARNDEFAULTENCODING=1 pytest -vv -rfE -n $PYTEST_WORKERS --dist=worksteal $TEST_ARGS $COVERAGE pandas/io/tests/test_sql.py"
11+
PYTEST_CMD="MESONPY_EDITABLE_VERBOSE=1 PYTHONDEVMODE=1 PYTHONWARNDEFAULTENCODING=1 pytest -vv -rfE -n $PYTEST_WORKERS --dist=worksteal $TEST_ARGS $COVERAGE $PYTEST_TARGET"
1212

1313
if [[ "$PATTERN" ]]; then
1414
PYTEST_CMD="$PYTEST_CMD -m \"$PATTERN\""

0 commit comments

Comments
 (0)