Skip to content

Commit 1e63855

Browse files
authored
Fix Windows release pytest temp directory setup (#24)
1 parent 497003d commit 1e63855

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: python -m pip install -e ".[dev,build,gui]" cyclonedx-bom
3636
- name: Install Inno Setup
3737
run: choco install innosetup -y --no-progress
38-
- run: python -m pytest -m "not integration" --basetemp .pytest-tmp/release -o cache_dir=.pytest-tmp/cache
38+
- run: python -c "import os; os.makedirs('.pytest-tmp', exist_ok=True)" && python -m pytest -m "not integration" --basetemp .pytest-tmp/release -o cache_dir=.pytest-tmp/cache
3939
- run: python -m build
4040
- name: Generate PyInstaller version-info resource
4141
shell: python

0 commit comments

Comments
 (0)