Skip to content

Commit f8fcc02

Browse files
committed
CLN: Linting and pipeline fix
1 parent 192d573 commit f8fcc02

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

ci/code_checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
6868

6969
# Imports - Check formatting using isort see setup.cfg for settings
7070
MSG='Check import format using isort' ; echo $MSG
71-
ISORT_CMD="isort --recursive --check-only dataframe_sql"
71+
ISORT_CMD="isort --check-only dataframe_sql"
7272
if [[ "$GITHUB_ACTIONS" == "true" ]]; then
7373
eval $ISORT_CMD | awk '{print "##[error]" $0}'; RET=$(($RET + ${PIPESTATUS[0]}))
7474
else

dataframe_sql/tests/pandas_sql_functionality_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import pytest
1111

1212
from dataframe_sql import query
13+
from dataframe_sql.tests.markers import ibis_next_bug_fix, ibis_not_implemented
1314
from dataframe_sql.tests.utils import (
1415
AVOCADO,
1516
DIGIMON_MON_LIST,
@@ -20,7 +21,6 @@
2021
register_env_tables,
2122
remove_env_tables,
2223
)
23-
from dataframe_sql.tests.markers import ibis_not_implemented, ibis_next_bug_fix
2424

2525

2626
@pytest.fixture(autouse=True, scope="module")
@@ -357,6 +357,7 @@ def test_limit():
357357
pandas_frame = FOREST_FIRES.copy().head(10)
358358
tm.assert_frame_equal(pandas_frame, my_frame)
359359

360+
360361
@ibis_not_implemented
361362
def test_having_multiple_conditions():
362363
"""

0 commit comments

Comments
 (0)