Equivalent to the hatch run commands, but hatch run full is implemented. I checked version 1.7.0 of Hatch and find out that hatch run full script runs pytest --cov --cov-report={env:COVERAGE_REPORT:term-missing} --cov-config=pyproject.toml -n auto --reruns 5 --reruns-delay 3 -r aR {args:tests} (https://github.com/pypa/hatch/blob/46a2118ba39c00ca102cf463bdc829301402d05b/hatch.toml#L20C1-L23C69). I didn't figure out what is the equivalent of the hatch run full script. Do you have any idea?
Fixes #1657
Equivalent to the
hatch run
commands, buthatch run full
is implemented. I checked version 1.7.0 of Hatch and find out thathatch run full
script runspytest --cov --cov-report={env:COVERAGE_REPORT:term-missing} --cov-config=pyproject.toml -n auto --reruns 5 --reruns-delay 3 -r aR {args:tests}
(https://github.com/pypa/hatch/blob/46a2118ba39c00ca102cf463bdc829301402d05b/hatch.toml#L20C1-L23C69). I didn't figure out what is the equivalent of thehatch run full
script. Do you have any idea?