Skip to content

Commit

Permalink
remove group_2 and isolate newer tests into group_6
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 11, 2024
1 parent 58d8b66 commit b069393
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
3 changes: 1 addition & 2 deletions hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ code-quality = "pre-commit run --all-files"
unit-tests = "python -m pytest {args:tests/unit}"
integration-tests = [
'- python -m pytest {args:tests/functional} -m "group_1"',
'- python -m pytest {args:tests/functional} -m "group_2"',
'- python -m pytest {args:tests/functional} -m "group_3"',
'- python -m pytest {args:tests/functional} -m "group_4"',
'- python -m pytest {args:tests/functional} -m "group_5"',
'- python -m pytest {args:tests/functional} -m "group_6"',
'- python -m pytest {args:tests/functional} -m "not group_1 and not group_2 and not group_3 and not group_4 and not group_5 and not group_6"',
'- python -m pytest {args:tests/functional} -m "not group_1 and not group_3 and not group_4 and not group_5 and not group_6"',
]
docker-dev = [
"docker build -f docker/dev.Dockerfile -t dbt-snowflake-dev .",
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ filterwarnings = [
]
markers = [
"group_1",
"group_2",
"group_3",
"group_4",
"group_5",
Expand Down
28 changes: 14 additions & 14 deletions tests/functional/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"dbt_clone": "group_1",
"dbt_show": "group_1",
"empty": "group_1",
"incremental": "group_2",
"list_relations_tests": "group_2",
"python_model_tests": "group_2",
"query_comment_tests": "group_2",
"simple_copy": "group_2",
"simple_seed": "group_2",
"incremental": "group_6",
"list_relations_tests": "group_6",
"python_model_tests": "group_1",
"query_comment_tests": "group_1",
"simple_copy": "group_1",
"simple_seed": "group_1",
"statement_test": "group_3",
"store_test_failures_tests": "group_3",
"unit_testing": "group_3",
Expand All @@ -35,16 +35,16 @@
"test_python_model.py": "group_5",
"test_simple_snapshot.py": "group_5",
"test_timestamps.py": "group_5",
"auth_tests": "group_6",
"generic_test_tests": "group_6",
"iceberg": "group_6",
"override_database": "group_6",
"query_tag": "group_6",
"redact_log_values": "group_6",
"auth_tests": "group_1",
"generic_test_tests": "group_1",
"iceberg": "group_1",
"override_database": "group_1",
"query_tag": "group_1",
"redact_log_values": "group_1",
"relation_tests": "group_6",
"snowflake_view_dependency": "group_6",
"warehouse_test": "group_6",
"test_isolated_begin_commit.py": "group_6",
"warehouse_test": "group_1",
"test_isolated_begin_commit.py": "group_1",
}


Expand Down

0 comments on commit b069393

Please sign in to comment.