我无法在PyCharm下运行Django Python pytest

时间:2017-07-02 06:34:01

标签: python django pycharm pytest pytest-django

$ pytest portal/
=============================================== test session starts ===============================================
platform darwin -- Python 3.6.0, pytest-3.0.6, py-1.4.32, pluggy-0.4.0
Django settings: config.settings.local (from ini file)
rootdir: /Users/el/Code/siam-sbrand/portal, inifile: pytest.ini
plugins: django-3.1.2
collected 87 items

portal/apps/commons/tests.py ......
portal/apps/price_list_excel_files/tests.py ssssssssssss
portal/apps/price_lists/tests.py s....
portal/apps/reports/tests.py .........................ssss..................
portal/apps/sbrand_jobs/tests.py ................
portal/apps/service_items/tests.py s

===================================== 69 passed, 18 skipped in 32.08 seconds ======================================

pytest.ini:

[pytest]
DJANGO_SETTINGS_MODULE=config.settings.local
norecursedirs = node_modules venv *.txt
python_files = tests.py Test*.py test_*.py

我已经在pytest-django下安装了pyenv。然后我想研究PyCharm中的关键功能,但不幸的是,当我尝试进入JetBrain论坛时。它仅限于公司所有者。我不能发布我的问题,因为我只是一名员工。

enter image description here

这是我点击播放pytest按钮

的时候
/Users/el/.pyenv/versions/siam-sbrand/bin/python pytest portal
/Users/el/.pyenv/versions/siam-sbrand/bin/python: can't open file 'pytest': [Errno 2] No such file or directory

Process finished with exit code 2

**更新请参阅falsetru回答 enter image description here

enter image description here

呀!它就像一个PyCharm。它不是绿灯,因为我把装饰skip放在我的测试中。非常感谢你。

1 个答案:

答案 0 :(得分:1)

您应该使用python

,而不是使用Python tests > py.test

py.test configuration on PyCharm

<强>更新

您过滤了测试结果,仅显示跳过的测试。切换绿色按钮也会显示成功的测试。

toggle this buttons