Test coverage tool for Behave test framework

2019-02-17 06:04发布

We are using Behave BDD tool for automating API's. Is there any tool which give code coverage using our behave cases?

We tried using coverage module, it didn't work with Behave.

1条回答
劳资没心,怎么记你
2楼-- · 2019-02-17 06:47

You can run any module with coverage to see the code usage. In your case should be close to coverage run --source='.' -m behave

Tracking code coverage for Aceptace/Integration/Behaviour test will give a high coverage number easily but can lead to the idea that the code are properly tested.

Those are for see things working together, not to track how much code are well 'covered'.

Tying together unittests and coverages makes more sense to me.

查看更多
登录 后发表回答