Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix mismatches due to dep on py_re_client_lib
Summary: from one of the errors in D66006146 : ``` fbcode//buck2/tests/e2e/test:test_testname_formatting (cfg:windows-x86_64-msvc-clang17-no-san#27c538eff1d66d98) -> fbcode//buck2/tests/e2e/test:test_testname_formatting-library (cfg:windows-x86_64-msvc-clang17-no-san#27c538eff1d66d98) -> fbcode//remote_execution/client_lib/wrappers/python:py_re_client_lib is incompatible with cfg:windows-x86_64-msvc-clang17-no-san#27c538eff1d66d98 (ovr_config//os:linux unsatisfied), check the target's compatibility attributes ``` //remote_execution/client_lib/wrappers/python:py_re_client_lib has compatible_with Linux only. So specify this accordingly, this matches some of the already existing `skip_for_os` flags nearby anyhow. Note `xbgs //remote_execution/client_lib/wrappers/python:py_re_client_lib` turns up some 70 other files with `python_binary()`, `python_library()`, `cogwheel_test()` that are not showing up. One theory here is that this only matters for libs that configure for Windows & Mac CI, and fbcode is predominantly Linux. Reviewed By: scottcao Differential Revision: D66024771 fbshipit-source-id: 8fb3ab88583fea9e9fe2b1b6e739516c64fd836c
- Loading branch information