Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsramen committed Sep 18, 2023
1 parent 752109e commit d6e4fc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_custom_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def test_custom_model(table_biom, metadata):
},
)
custom_model.compile_model()
custom_model.fit_model(method="mcmc", num_draws=100, mcmc_chains=4, seed=42)
custom_model.fit_model(method="mcmc", num_draws=100, mcmc_chains=4,
seed=42)
inference = custom_model.to_inference()

assert set(inference.groups()) == {"posterior"}
Expand Down
3 changes: 2 additions & 1 deletion tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,5 +159,6 @@ def test_iteration_fit(self, table_biom, metadata):

for fit, model in model_iterator:
model.compile_model()
model.fit_model(method="mcmc", num_draws=100, mcmc_chains=4, seed=42)
model.fit_model(method="mcmc", num_draws=100, mcmc_chains=4,
seed=42)
_ = model.to_inference()

0 comments on commit d6e4fc8

Please sign in to comment.