conda 环境中的 pytest/pylint
我知道如何使用requirements.txt文件(包含pytest和pylint)在python中运行pytest和pylint:
python -m venv .
.\scripts\activate
pip install -r requirements.txt
pytest <filename>
但是我不确定如何在conda上执行此操作,到目前为止我有:
conda create --name testenv --file requirements.txt
conda activate testenv
??
我不知道该做什么放置 next 以便运行 pylint 或 pytest。 我查看了这个,它使用pylint filename.py< /代码>之后。 或者
conda install -c anaconda pylint
然后 pylint < ;文件名.py>
?
我认为 pytest 的步骤类似。
I know how to run a pytest and pylint in python using a requirements.txt file (containing pytest and pylint):
python -m venv .
.\scripts\activate
pip install -r requirements.txt
pytest <filename>
However I'm not sure on how to do this on conda, so far I have:
conda create --name testenv --file requirements.txt
conda activate testenv
??
I'm not sure what to put next in order to run a pylint or pytest.
I've taken a look at this which uses pylint filename.py
after.
Or would conda install -c anaconda pylint
and then pylint <filename.py>
?
I assume it would be similar steps for pytest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总体来说,这个过程是相同的——或者更准确地说,它是类似的。 Conda 在所有方面都不是一个类似的工具,但为此,步骤应该看起来很熟悉。
我不确定你的标题中的“在多个目录中”指的是什么。
The process in general is the same - or it might be more precise to say it's analogous. Conda is not an analogous tool in all respects, but for this, the steps should look familiar.
I'm not sure what "in multiple directories" in your title refers to.