我刚开始使用pytest,根据pytest.org输入$ pytest应该找到所有'_test *'文件,但是当我运行pytest命令时,它自己找不到任何文件。
Raghavs-MacBook-Pro:~ raghav$ pwd
/Users/raghav
Raghavs-MacBook-Pro:~ raghav$ ls
test_dict.py test_sample.py test_str.py
Raghavs-MacBook-Pro:~ raghav$ pytest
platform darwin -- Python 3.6.4, pytest-3.4.2, py-1.5.2, pluggy-0.6.0
rootdir: /Users/raghav, inifile:
即使这不起作用
Raghavs-MacBook-Pro:~ raghav$ pytest
platform darwin -- Python 3.6.4, pytest-3.4.2, py-1.5.2, pluggy-0.6.0
rootdir: /Users/raghav, inifile:
test_sample.py F
但它的工作方式就是这样。
Raghavs-MacBook-Pro:~ raghav$ pytest test_sample.py
platform darwin -- Python 3.6.4, pytest-3.4.2, py-1.5.2, pluggy-0.6.0
rootdir: /Users/raghav, inifile:
collected 1 item