We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1acbc85 commit 29c64e6Copy full SHA for 29c64e6
1 file changed
.azure/templates/build-test.yml
@@ -43,6 +43,12 @@ steps:
43
name: flake8_lint
44
displayName: Run Flake8 Linter
45
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)
52
- bash: |
53
cd tests
54
python -m pytest .. -vv --no-coverage-upload --color=yes
0 commit comments