mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
allow globs in file_patterns
This commit is contained in:
parent
710019ee44
commit
1e633a2a7d
10 changed files with 136 additions and 43 deletions
|
|
@ -182,7 +182,12 @@ def test_parse_project_cfg():
|
|||
assert cfg.tag is True
|
||||
assert cfg.push is True
|
||||
|
||||
assert set(cfg.file_patterns.keys()) == {"setup.py", "README.rst", "setup.cfg"}
|
||||
assert set(cfg.file_patterns.keys()) == {
|
||||
"setup.py",
|
||||
"README.rst",
|
||||
"setup.cfg",
|
||||
"src/module_v*/__init__.py",
|
||||
}
|
||||
|
||||
|
||||
def test_parse_toml_file(tmpdir):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue