Loading tests/renderer/utils.py +2 −0 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ the United Nations Convention on Contracts on the International Sales of Goods. """ import logging import subprocess as sp import sys from pathlib import Path Loading @@ -49,6 +50,7 @@ def test_info(request): def run_cmd(cmd): logging.info(f"\nRunning command\n{' '.join(cmd)}\n") try: sp.run(cmd, check=True, capture_output=True, text=True) except sp.CalledProcessError as e: Loading Loading
tests/renderer/utils.py +2 −0 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ the United Nations Convention on Contracts on the International Sales of Goods. """ import logging import subprocess as sp import sys from pathlib import Path Loading @@ -49,6 +50,7 @@ def test_info(request): def run_cmd(cmd): logging.info(f"\nRunning command\n{' '.join(cmd)}\n") try: sp.run(cmd, check=True, capture_output=True, text=True) except sp.CalledProcessError as e: Loading