#1632 - Fixed output directory clear bug. Added gputil to dev deps.

This commit is contained in:
Chris McCarthy
2023-07-20 10:28:19 +01:00
parent 26aea67cd3
commit 1f3ac50849
2 changed files with 3 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ _RESULTS_ROOT.mkdir(exist_ok=True, parents=True)
_OUTPUT_ROOT: Final[Path] = _BENCHMARK_ROOT / "output"
# Clear and recreate the output directory
if _OUTPUT_ROOT.exists():
shutil.rmtree(_OUTPUT_ROOT)
_OUTPUT_ROOT.mkdir()

View File

@@ -55,6 +55,7 @@ dev = [
"build==0.10.0",
"flake8==6.0.0",
"furo==2023.3.27",
"gputil==1.4.0",
"pip-licenses==4.3.0",
"pre-commit==2.20.0",
"pylatex==1.4.1",