3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-23 05:15:30 +00:00

tests: Do not run the same SBY task multiple times in parallel

This commit is contained in:
Jannis Harder 2022-10-20 13:57:37 +02:00
parent 83a1aa23c8
commit 90616c280b
3 changed files with 20 additions and 14 deletions

View file

@ -18,7 +18,8 @@ sby_dir = sby_file.parent
taskinfo = json.loads(
subprocess.check_output(
[sys.executable, os.getenv("SBY_MAIN"), "--dumptaskinfo", sby_file]
[sys.executable, os.getenv("SBY_MAIN"), "--dumptaskinfo", sby_file.name],
cwd=sby_dir,
)
)