Skip to content

Commit

Permalink
pull out python model tests for troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 17, 2024
1 parent 24c57af commit 764dbdd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .",
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ markers = [
"last_quarter",
"last_month",
"microbatch",
"python_model",
"large",
]
6 changes: 3 additions & 3 deletions tests/functional/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -24,15 +24,15 @@
"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",
"test_get_last_relation_modified.py": "last_year",
"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",
Expand Down

0 comments on commit 764dbdd

Please sign in to comment.