mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:43:32 +03:00
build: add pytest targets
It enables running pytests in cmake jobs, regardless of underlying build tool choice (= makes it work with ninja.) Also: - drop pytest logic launching `make` and exiting in case of failure. Maybe there is a better way and keep this functionality somehow, bind it to a command-line option? make it fail softly? - GHA/linux: invoke pytest via the build, not directly. - autotools: add missing dummy runtests targets when cross-compiling. Closes #15034
This commit is contained in:
parent
ed766751cc
commit
d82f9f965c
7 changed files with 49 additions and 17 deletions
|
|
@ -579,12 +579,3 @@ class Env:
|
|||
i = int(fsize / line_length) + 1
|
||||
fd.write(f"{i:09d}-{s}"[0:remain-1] + "\n")
|
||||
return fpath
|
||||
|
||||
def make_clients(self):
|
||||
client_dir = os.path.join(self.project_dir, 'tests/http/clients')
|
||||
p = subprocess.run(['make'], capture_output=True, text=True,
|
||||
cwd=client_dir)
|
||||
if p.returncode != 0:
|
||||
pytest.exit(f"`make`in {client_dir} failed:\n{p.stderr}")
|
||||
return False
|
||||
return True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue