We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3164e70 commit 71d22e0Copy full SHA for 71d22e0
test/test_sample.py
@@ -74,7 +74,8 @@ def test_bernoulli_good(stanfile: str):
74
75
for i in range(bern_fit.runset.chains):
76
csv_file = bern_fit.runset.csv_files[i]
77
- # NB this assumes we're not using threads for chains
+ # NB: This will fail if STAN_THREADS is enabled
78
+ # due to sampling only producing 1 stdout file in that case
79
stdout_file = bern_fit.runset.stdout_files[i]
80
assert os.path.exists(csv_file)
81
assert os.path.exists(stdout_file)
0 commit comments