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 20f9f6e commit 8c36634Copy full SHA for 8c36634
tests/test_util.py
@@ -25,13 +25,11 @@
25
def test_get_version_from_dependency_success():
26
"""Test get_version_from_dependency with valid pyproject.toml."""
27
mock_toml_content = {
28
- "build-system": {
29
- "requires": [
30
- "clang-format==20.1.7",
31
- "clang-tidy==20.1.0",
32
- "other-package==1.0.0",
33
- ]
34
- },
+ "dependencies": [
+ "clang-format==20.1.7",
+ "clang-tidy==20.1.0",
+ "other-package==1.0.0",
+ ],
35
"project": {},
36
}
37
0 commit comments