Skip to content

Commit 02f7b40

Browse files
rebase, adapt test due to added sushi models
1 parent aa2146c commit 02f7b40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ fast-test:
6767
pytest -n auto -m "fast and not cicdonly" --junitxml=test-results/junit-fast-test.xml && pytest -m "isolated" && pytest -m "registry_isolation"
6868

6969
slow-test:
70-
pytest -n auto -m "(fast or slow) and not cicdonly" && pytest -m "isolated"
70+
pytest -n auto -m "(fast or slow) and not cicdonly" && pytest -m "isolated" && pytest -m "registry_isolation"
7171

7272
cicd-test:
73-
pytest -n auto -m "fast or slow" --junitxml=test-results/junit-cicd.xml && pytest -m "isolated"
73+
pytest -n auto -m "fast or slow" --junitxml=test-results/junit-cicd.xml && pytest -m "isolated" && pytest -m "registry_isolation"
7474

7575
core-fast-test:
7676
pytest -n auto -m "fast and not web and not github and not dbt and not jupyter"

tests/test_forking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_parallel_load(assert_exp_eq, mocker):
2424
executor_args = process_pool_executor.call_args
2525
assert executor_args[1]["max_workers"] == 2
2626

27-
assert len(context.models) == 18
27+
assert len(context.models) == 20
2828
spy_update_schemas.assert_called()
2929
assert_exp_eq(
3030
context.render("sushi.customers"),

0 commit comments

Comments
 (0)