Skip to content

Commit 29c64e6

Browse files
authored
bugfix/windows-test-pipeline (#317)
* debug prints * try corretly escape variable * more tests * more debugging * try add openssl * revert unneeded changes
1 parent 1acbc85 commit 29c64e6

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.azure/templates/build-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ steps:
4343
name: flake8_lint
4444
displayName: Run Flake8 Linter
4545
condition: eq(variables['run-fuzzing'], false)
46+
- pwsh: |
47+
choco install openssl.light -y --no-progress
48+
$opensslBin = "C:\Program Files\OpenSSL-Win64\bin"
49+
Write-Host "##vso[task.setvariable variable=PATH]$opensslBin;$env:PATH"
50+
condition: eq(variables['Agent.OS'], 'Windows_NT')
51+
displayName: Install OpenSSL (Windows)
4652
- bash: |
4753
cd tests
4854
python -m pytest .. -vv --no-coverage-upload --color=yes

0 commit comments

Comments
 (0)