Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Nov 30, 2024
2 parents 7ef9327 + ccee181 commit b9a1973
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_process_ei310_cutoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def test_brightway():
mclca = bw2calc.MonteCarloLCA({bw2data.Database("test1").random(): 1}, method)
except AttributeError:
# uses BW25
mclca = bw2calc.LCA({bw2data.Database("test1").random(): 1}, method, use_distributions=True)
mclca = bw2calc.LCA(
{bw2data.Database("test1").random(): 1}, method, use_distributions=True
)

results = [lca.score for _ in zip(range(10), mclca)]
assert all(isinstance(result, float) for result in results)
Expand Down

0 comments on commit b9a1973

Please sign in to comment.