- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
@mark.incremental 的目的是如果一个测试失败,之后的测试将被标记为预期失败。
但是,当我将它与参数化结合使用时,我会出现不良行为。
例如,在这个假代码的情况下:
//conftest.py:
def pytest_generate_tests(metafunc):
metafunc.parametrize("input", [True, False, None, False, True])
def pytest_runtest_makereport(item, call):
if "incremental" in item.keywords:
if call.excinfo is not None:
parent = item.parent
parent._previousfailed = item
def pytest_runtest_setup(item):
if "incremental" in item.keywords:
previousfailed = getattr(item.parent, "_previousfailed", None)
if previousfailed is not None:
pytest.xfail("previous test failed (%s)" %previousfailed.name)
//test.py:
@pytest.mark.incremental
class TestClass:
def test_input(self, input):
assert input is not None
def test_correct(self, input):
assert input==True
我希望测试类能够运行
test_input 为真,
紧随其后的是 test_correct,
紧随其后的是 False 上的 test_input,
随后是 test_correct 错误,
紧随其后的是无测试输入,
后跟 (xfailed) test_correct on None,等等。
相反,发生的是测试类
我假设正在发生的事情是参数化优先于通过类中的函数进行处理。问题是是否有可能覆盖此行为或以某种方式解决它,因为当前情况使将类标记为增量对我来说完全没用。
(处理这个问题的唯一方法是一遍又一遍地复制粘贴类的代码,每次都使用不同的参数吗?这个想法让我厌恶)
最佳答案
https://docs.pytest.org/en/latest/example/parametrize.html 中描述了此问题的解决方案在标题 “testscenarios”的快速端口下
这是那里列出的代码,conftest.py
中的代码正在做的是在测试类中寻找变量 scenarios
。当它找到变量时,它会遍历场景的每个项目,并需要一个 id
字符串来标记测试和一个“argnames:argvalues”字典
# content of conftest.py
def pytest_generate_tests(metafunc):
idlist = []
argvalues = []
for scenario in metafunc.cls.scenarios:
idlist.append(scenario[0])
items = scenario[1].items()
argnames = [x[0] for x in items]
argvalues.append(([x[1] for x in items]))
metafunc.parametrize(argnames, argvalues, ids=idlist, scope="class")
# content of test_scenarios.py
scenario1 = ('basic', {'attribute': 'value'})
scenario2 = ('advanced', {'attribute': 'value2'})
class TestSampleWithScenarios(object):
scenarios = [scenario1, scenario2]
def test_demo1(self, attribute):
assert isinstance(attribute, str)
def test_demo2(self, attribute):
assert isinstance(attribute, str)
您还可以修改函数 pytest_generate_tests
以接受不同的数据类型输入。例如,如果您有一个通常传递给的列表@pytest.mark.parametrize("varname", varval_list)
您可以通过以下方式使用相同的列表:
# content of conftest.py
def pytest_generate_tests(metafunc):
idlist = []
argvalues = []
argnames = metafunc.cls.scenario_keys
for idx, scenario in enumerate(metafunc.cls.scenario_parameters):
idlist.append(str(idx))
argvalues.append([scenario])
metafunc.parametrize(argnames, argvalues, ids=idlist, scope="class")
# content of test_scenarios.py
varval_list = [a, b, c, d]
class TestSampleWithScenarios(object):
scenario_parameters = varval_list
scenario_keys = ['varname']
def test_demo1(self, attribute):
assert isinstance(attribute, str)
def test_demo2(self, attribute):
assert isinstance(attribute, str)
id 将是一个自动生成的数字(您可以将其更改为使用您指定的内容)并且在此实现中它不会处理多个参数化变量,因此您必须将它们编译在一个列表中(或满足 pytest_generate_tests
为你处理)
关于python - 在 pytest 测试类中使用 @mark.incremental 和 metafunc.parametrize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39898702/
我已经查看了 Microsoft 的 MSDN 和整个网络,但我仍然无法很好地了解它是什么。 这是否意味着已完成的程序在执行期间的不同时间加载 DLL,而不是在启动时一次性加载所有 DLL? 我完全偏
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: Is there a performance difference between i++ and ++i
++a = b 操作未显示错误,但 a++ = b 在使用 g++ 编译时显示错误。两个变量都在这些操作之前初始化。 虽然这些操作没有实际用途,但我认为它们在编译时应该会出现相同的错误。你怎么认为?如
在this fiddle ,为什么计数器在调用 increment() 函数时不增加。已将计数器设置为增加对自身的分配后分配,因此在单击事件按钮(多次)后,计数器变量应该增加。 注意:如果我像这样进行
尝试在 iOS 中使用 swift 使用 firebase FieldValue.increment(1) 时,我收到编译器错误。该错误仅表示“‘增量’的使用不明确” 我已将所有 Pod 更新为所有使
我修复了 this question 中的代码这样它就可以编译: #define text (); #define return &argv;return int *** emphasized ()
我需要将每个增量 id 设置为前一个生成的 id 表的增量 id +5。这意味着每次自动增量必须有 5 个间隙。像这个系列2、7、12、17等.. 任何想法请分享。 最佳答案 请检查链接: https
我正在尝试进行设置,将类从 1 增加到 12,并根据变量列表(也是 12 个变量)设置背景颜色。 我很接近,但没有得到我所希望的。这是我第一次涉足 SASS 中的控制指令,所以请原谅我的无知。 目前,
我有以下代码 int cnt = 0; for (int i = 0; i 0 和 N(N-1)/2当所有 a[k] == 0 时。 对于增量的总数,为外部 for 循环添加 N 为
我们有一个方法可以维护我们应用程序中所有事件的全局序列索引。由于它是网站,因此预计具有线程安全的这种方法。线程安全的实现如下: private static long lastUsedIndex =
我有这个简单的表(仅用于测试): create table table ( key int not null primary key auto_increment, name varchar(30)
我见过很多不错的对象池实现。例如:C# Object Pooling Pattern implementation . 但似乎线程安全的总是使用锁,从不尝试使用 Interlocked.* 操作。 编
在 jQuery 中增加值的最佳方法是什么 .data()目的? 最佳答案 这看起来有点奇怪,但根据文档 .data()将所有数据字段作为对象返回,因此您可以直接更改其值: $('#id').data
是 Interlocked.Increment(ref x)比 x++ 快或慢对于各种平台上的整数和多头? 最佳答案 它较慢,因为它强制操作以原子方式发生,并且充当内存屏障,消除了处理器围绕指令重新排
我创建了一个购物车应用。当用户单击同一产品时,我要增加编号。 如果用户单击同一项目10次,则我想这样更新Firestore。 items:[{'productId':'1234','count':10
我需要循环遍历数据数组并为每个数组值打印一个“递增”字母。我知道我可以做到这一点: $array = array(11, 33, 44, 98, 1, 3, 2, 9, 66, 21, 45); //
Firestore 的 FieldValue.increment(someValue) 可以与其他字段正常配合使用,但不能与 map 配合使用。 我正在尝试增加 map 中属性的值。我有一个名为用户的
如果行的faction.factionname 与 INSERT 的 cards.faction 匹配,我正在尝试创建一个触发器,在 INSERT into card 之后增加派系表中的 cardco
我们有一个并发的多线程程序。我如何使样本数每次增加 +5 间隔? Interlocked.Increment 是否有间隔过载?我没有看到它列出。 Microsoft Interlocked.Incre
我正在运行时创建动态类型,目的是从该类型创建/序列化/反序列化对象,然后绑定(bind)到网格控件。一切正常,但我用数据库中的记录更新属性的方式很可悲。我从某个地方粘贴了这个 setter 生成器,当
我是一名优秀的程序员,十分优秀!