tests/http/clients: move to tests/client

To have all the tests binaries directly under the tests directory.

There seems to be no issue adding non-http test clients to this subdir.

Closes #17637
This commit is contained in:
Viktor Szakats 2025-06-16 12:42:19 +02:00
parent 260ec730c2
commit 9b7c488f17
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
21 changed files with 16 additions and 20 deletions

View file

@ -44,7 +44,7 @@ class LocalClient:
timeout: Optional[float] = None,
run_env: Optional[Dict[str,str]] = None):
self.name = name
self.path = os.path.join(env.build_dir, 'tests/http/clients/clients')
self.path = os.path.join(env.build_dir, 'tests/client/clients')
self.env = env
self._run_env = run_env
self._timeout = timeout if timeout else env.test_timeout