Open
Description
Fedora report: https://bugzilla.redhat.com/show_bug.cgi?id=1808601
When the dependencies are defined as:
[testenv]
deps = -rrequirements.txt
We need to read the files (recursively) and output their content.
The code that handles this now is
tox-current-env/src/tox_current_env/hooks.py
Lines 161 to 172 in dc47ce3
The *venv.get_resolved_dependencies()
call needs to be replaced with a custom function call. That function needs to call venv.get_resolved_dependencies()
and handle "packages" that start with -r
/-c
specially.