mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
Migrate python-versions pipeline to GH Actions
This commit is contained in:
committed by
Mikhail Koliada
parent
c310309d73
commit
59e54b2d8b
@ -39,7 +39,7 @@ Describe "Tests" {
|
||||
"python --version" | Should -ReturnZeroExitCode
|
||||
$pythonLocation = (Get-Command "python").Path
|
||||
$pythonLocation | Should -Not -BeNullOrEmpty
|
||||
$expectedPath = Join-Path -Path $env:AGENT_TOOLSDIRECTORY -ChildPath "Python"
|
||||
$expectedPath = Join-Path -Path $env:RUNNER_TOOL_CACHE -ChildPath "Python"
|
||||
$pythonLocation.startsWith($expectedPath) | Should -BeTrue
|
||||
}
|
||||
|
||||
@ -61,7 +61,7 @@ Describe "Tests" {
|
||||
if (IsNixPlatform $Platform) {
|
||||
|
||||
It "Check for failed modules in build_output" {
|
||||
$buildOutputLocation = Join-Path $env:BUILD_BINARIESDIRECTORY "build_output.txt"
|
||||
$buildOutputLocation = Join-Path $env:RUNNER_TEMP "build_output.txt"
|
||||
Analyze-MissingModules $buildOutputLocation | Should -Be 0
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user