move all extended_testing_deps.txt

This commit is contained in:
Chester Curme
2024-09-17 16:38:49 -04:00
parent 32e90ce912
commit 74a6079992
6 changed files with 4 additions and 2 deletions

View File

@@ -68,7 +68,9 @@ def dependents_graph() -> dict:
# load extended deps from extended_testing_deps.txt
package_path = Path(path).parent
extended_requirement_path = package_path / "extended_testing_deps.txt"
extended_requirement_path = (
package_path / "extended_dependencies" / "extended_testing_deps.txt"
)
if extended_requirement_path.exists():
with open(extended_requirement_path, "r") as f:
extended_deps = f.read().splitlines()