github-rest-api 0.10.0__tar.gz → 0.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/PKG-INFO +1 -1
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/github_rest_api/actions/cargo.py +3 -1
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/pyproject.toml +1 -1
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/README.md +0 -0
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/github_rest_api/__init__.py +0 -0
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/github_rest_api/actions/__init__.py +0 -0
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/github_rest_api/actions/utils.py +0 -0
- {github_rest_api-0.10.0 → github_rest_api-0.10.1}/github_rest_api/github.py +0 -0
|
@@ -163,7 +163,9 @@ def _clean_bench_dirs(bench_dir: Path, history: int) -> list[Path]:
|
|
|
163
163
|
for path in dirs[:-history]:
|
|
164
164
|
shutil.rmtree(path)
|
|
165
165
|
dirs = dirs[-history:]
|
|
166
|
-
|
|
166
|
+
dev = bench_dir / "dev"
|
|
167
|
+
if dev.is_dir():
|
|
168
|
+
dirs.append(dev)
|
|
167
169
|
return dirs
|
|
168
170
|
|
|
169
171
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|