Py2/3 generated sources clash in runfiles #6482
Labels
P3
We're not considering working on this, but happy to review a PR. (No assignee)
stale
Issues or PRs that are stale (no activity for 30 days)
team-Rules-Python
Native rules for Python
type: bug
When a target depends on the same generated source file in both PY2 and PY3 modes, it's arbitrary which one wins in the runfiles. Here
foobar
depends on source filea.py
and generated source fileb.py
through both PY2 and PY3 binary targets. In the runfiles,a.py
symlinks to the source file, which is the same in both modes, butb.py
symlinks to the file generated in the PY2 output root (the one without "-py3" in the path), silently ignoring the PY3 one.The text was updated successfully, but these errors were encountered: