Skip to content

Commit 6275fc5

Browse files
committed
test: consolidated column any value expectaitons tests
1 parent dff54f1 commit 6275fc5

File tree

10 files changed

+2747
-657
lines changed

10 files changed

+2747
-657
lines changed

.github/workflows/main.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: CI
22

33
on:
44
push:
5-
pull_request:
65
workflow_dispatch: # Allow manual triggering
76

87
permissions:

tests/expectations/aggregation/numerical_expectations/test_expect_column_median_between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_expectation_description():
7474

7575

7676
@pytest.mark.parametrize(
77-
"df_type,data,min_value,max_value,should_succeed,expected_message",
77+
"df_type, data, min_value, max_value, should_succeed, expected_message",
7878
[
7979
# Pandas success scenarios
8080
("pandas", [20, 25, 30, 35], 25, 30, True, None), # median = 27.5, basic success

tests/expectations/aggregation/numerical_expectations/test_expect_column_min_between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_expectation_description():
7474

7575

7676
@pytest.mark.parametrize(
77-
"df_type,data,min_value,max_value,should_succeed,expected_message",
77+
"df_type, data, min_value, max_value, should_succeed, expected_message",
7878
[
7979
# Pandas success scenarios
8080
("pandas", [20, 25, 30, 35], 15, 25, True, None), # min = 20, basic success

tests/expectations/aggregation/numerical_expectations/test_expect_column_quantile_between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_expectation_description():
8080

8181

8282
@pytest.mark.parametrize(
83-
"df_type,data,quantile,min_value,max_value,should_succeed,expected_message",
83+
"df_type, data, quantile, min_value, max_value, should_succeed, expected_message",
8484
[
8585
# Pandas success scenarios - various quantiles
8686
("pandas", [20, 25, 30, 35], 0.0, 15, 25, True, None), # min = 20

0 commit comments

Comments
 (0)