AttributeError: module 'unittest' has no attribute 'skip_dependon'
时间: 2023-06-23 10:45:44 浏览: 110
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是因为你在使用 `unittest` 模块时错误地使用了 `skip_dependon` 属性,而实际上该属性不存在。
正确的属性是 `skipDependent`,可以使用类似以下的代码来跳过依赖测试:
```python
@unittest.skipDependent
def test_my_dependent_test(self):
# ...
```
如果你确信你的代码中没有拼写错误或者语法错误,那么可能是你使用的 `unittest` 版本过低,不支持该属性。可以尝试升级 `unittest` 模块或者使用其他的跳过依赖测试的方法。
阅读全文