diff --git a/hatch.toml b/hatch.toml index c3d3847ae..5543df3a1 100644 --- a/hatch.toml +++ b/hatch.toml @@ -32,6 +32,8 @@ integration-tests = [ '- python -m pytest {args:tests/functional} -m "last_quarter"', '- python -m pytest {args:tests/functional} -m "last_month"', '- python -m pytest {args:tests/functional} -m "microbatch"', + '- python -m pytest {args:tests/functional} -m "python_model"', + '- python -m pytest {args:tests/functional} -m "large"', ] docker-dev = [ "docker build -f docker/dev.Dockerfile -t dbt-snowflake-dev .", diff --git a/pyproject.toml b/pyproject.toml index ab5251059..cb24785a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,4 +51,6 @@ markers = [ "last_quarter", "last_month", "microbatch", + "python_model", + "large", ] diff --git a/tests/functional/conftest.py b/tests/functional/conftest.py index f1cbc53e4..eb1a992bd 100644 --- a/tests/functional/conftest.py +++ b/tests/functional/conftest.py @@ -12,7 +12,7 @@ "empty": "last_quarter", "incremental": "microbatch", "list_relations_tests": "last_month", - "python_model_tests": "last_year", + "python_model_tests": "python_model", "query_comment_tests": "last_year", "simple_copy": "last_year", "simple_seed": "last_year", @@ -24,7 +24,7 @@ "test_anonymous_usage_stats.py": "last_year", "test_basic.py": "last_year", "test_caching.py": "last_year", - "test_changing_relation_type.py": "last_year", + "test_changing_relation_type.py": "large", "test_concurrency.py": "last_year", "test_constraints.py": "last_year", "test_ephemeral.py": "last_year", @@ -32,7 +32,7 @@ "test_grants.py": "last_year", "test_incremental_microbatch.py": "microbatch", "test_persist_docs.py": "last_year", - "test_python_model.py": "last_year", + "test_python_model.py": "python_model", "test_simple_snapshot.py": "last_year", "test_timestamps.py": "last_year", "auth_tests": "last_month",