1

我正在尝试使用类似于此处所做的假设来解决一个难题:

http://nchammas.com/writing/how-not-to-die-hard-with-hypothesis

不幸的是,它会因 Flaky 错误而间歇性失败,我无法使用 pdb 追踪问题。

我的程序源在:

https://gist.github.com/sureshvv/0fb78ef221fb8c1ed85dd034c83abefa

它可以使用 py.test 运行。

任何诊断和解决问题的帮助表示赞赏。

4

1 回答 1

1

问题是由于在我的规则中调用 random.sample 引起的。需要使用 strategy.choices() 代替。

于 2017-06-07T11:32:16.420 回答