mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 04:06:59 +00:00
When running some pytest-based tests they start scylla binary by hand instead of relying on test.py's "clusters". In automatic run (e.g. via test.py itself) the correct scylla binary is the one pointed to by SCYLLA environment, but when run from shell via pytest directly it tries to be smart and looks at build/*/scylla binaries picking the one with the greatest mtime. That guess is not very nice, because if the developer switches between build modes with configure.py and rebuilds binaries, binaries from "older" or "previous" builds stay on the way and confuse the guessing code. It's better to be explicit. refs: #15679 Signed-off-by: Pavel Emelyanov <xemul@scylladb.com> Closes scylladb/scylladb#15684