mirror of
https://github.com/etcd-io/etcd.git
synced 2026-02-05 06:46:49 +01:00
The robustness CI jobs are failing with "flag provided but not defined: -bin-dir" because the test path includes subpackages (./tests/robustness/...) that don't register this flag. PR 20962 changed the test invocation to use ./tests/robustness/... which runs tests in all subpackages. The validate/ and model/ subpackages contain unit tests that don't import framework/e2e (which registers -bin-dir), so they fail when this flag is passed. PR 21039 attempted to fix the issue but only changed the test runner function, not the package path. This change removes the /... suffix to only run tests in the main robustness package, restoring the original behavior. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
scripts for etcd development