Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update develop.md #35

Merged
merged 2 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guidelines/advanced/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Python 内置测试框架是 [unittest](https://docs.python.org/zh-cn/3/library/

面向对象的方式所支持的几个概念:

- 测试脚手架: `test fixture` 表示为了展开意向或多想测试所需要准备的工作,以及相关的清理工作
- 测试脚手架: `test fixture` 表示为了展开一项或多项测试所需要准备的工作,以及相关的清理工作
- 测试用例:一个测试用例是一个独立的单元测试。
- 测试套件:是一系列的测试用例,或测试套件。
- 测试运行器:用于执行和输出测试结果。
Expand Down
2 changes: 1 addition & 1 deletion docs/guidelines/tutorial/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ class StripTransformer(BaseTransformer):

```

上面两处调整,是使用了 pylint 的规则金庸功能,在这两个模块上,抑制 pylint 的 `too-few-public-methods` 规则。
上面两处调整,是使用了 pylint 的规则禁用功能,在这两个模块上,抑制 pylint 的 `too-few-public-methods` 规则。

此时再次运行 `pylint` 检查代码:

Expand Down
Loading