We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4699ce7 + 2188782 commit a377566Copy full SHA for a377566
1 file changed
tests/test_pythonpackage.py
@@ -41,11 +41,8 @@ def test_get_package_dependencies():
41
dep for dep in deps_recursive
42
if "MarkupSafe" in dep
43
]
44
- # Check setuptools not being in non-recursive deps:
45
- # (It will be in recursive ones due to p4a's build dependency)
46
- assert "setuptools" not in deps_nonrecursive
47
- # Check setuptools is present in non-recursive deps,
48
- # if we also add build requirements:
+ # Check setuptools is present in non-recursive deps when we add
+ # build requirements:
49
assert "setuptools" in get_package_dependencies(
50
local_repo_folder(), recursive=False,
51
include_build_requirements=True,
0 commit comments