Skip to content

Speed up test_fit_no_y #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pymc_experimental/tests/test_model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def test_fit(fitted_model_instance):

def test_fit_no_y(toy_X):
model_builder = test_ModelBuilder()
model_builder.idata = model_builder.fit(X=toy_X)
model_builder.idata = model_builder.fit(X=toy_X, chains=1, tune=1, draws=1)
assert model_builder.model is not None
assert model_builder.idata is not None
assert "posterior" in model_builder.idata.groups()
Expand Down