_jb_pytest_runner.py: error: unrecognized arguments: --cov报错

今天在运行GCN的时候,遇到了argparse,debug的时候报错:

_jb_pytest_runner.py: error: unrecognized arguments: --cov

argparse是python内置的一个库,是为了写出可以加参数的命令行的程序而生的,正常是可以运行的,但是如果你的环境中没有pytest-cov这个库,是会报错的,解决办法就可以安上这个库:

pip install pytest-cov

你可能感兴趣的:(python,pytest,python,开发语言)