We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a5e338 commit f3d2419Copy full SHA for f3d2419
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- 修复插件测试数据匹配问题
13
14
## [2.3.0] - 2023-05-13
15
16
### Added
plugin_test.py
@@ -11,7 +11,7 @@
from urllib.request import urlopen
# 匹配信息的正则表达式
-ISSUE_PATTERN = r"\*\*{}:\*\*\s+([^\s*].*?)(?=(?:\s+\*\*|$))"
+ISSUE_PATTERN = r"### {}\s+([^\s#].*?)(?=(?:\s+###|$))"
# 插件信息
PROJECT_LINK_PATTERN = re.compile(ISSUE_PATTERN.format("PyPI 项目名"))
17
MODULE_NAME_PATTERN = re.compile(ISSUE_PATTERN.format("插件 import 包名"))
0 commit comments