We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730c1f2 commit b221df1Copy full SHA for b221df1
.github/workflows/test.yaml
@@ -57,15 +57,18 @@ jobs:
57
python-version: '3.x'
58
architecture: 'x64'
59
60
- - name: Run integration tests
61
- # Since windows VM do not handle well tmpdirs,
+ - name: Run integration tests on windows-2019
+ # Since GH windows VM do not handle well tmpdirs,
62
# we create the pytest temp folder in current dir
63
if: matrix.operating-system == 'windows-2019'
64
+ env:
65
+ PYTEST_DEBUG_TEMPROOT: '.pytest-tmp-dir'
66
run: |
67
+ if not exist %PYTEST_DEBUG_TEMPROOT% mkdir %PYTEST_DEBUG_TEMPROOT%
68
pip install -r test/requirements.txt
69
task test-integration
- env:
- PYTEST_DEBUG_TEMPROOT: '.pytest-tmp-dir'
70
+ rmdir %PYTEST_DEBUG_TEMPROOT% /Q /S
71
+ shell: cmd
72
73
- name: Run integration tests
74
if: matrix.operating-system != 'windows-2019'
0 commit comments