Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 291 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 291 Bytes

安装 pytest

pip install pytest

运行:

pytest

将会看到失败的测试 修复失败的测试 开始练习 TDD。

提交代码前,执行:

pip install pycodestyle
pycodestyle .

保证代码符合规范,再提交。