File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1010import pytest
1111
1212from dataframe_sql import query
13+ from dataframe_sql .tests .markers import ibis_next_bug_fix , ibis_not_implemented
1314from dataframe_sql .tests .utils import (
1415 AVOCADO ,
1516 DIGIMON_MON_LIST ,
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
361362def test_having_multiple_conditions ():
362363 """
You can’t perform that action at this time.
0 commit comments