Add support for 3.7.3 python version (#219)

This commit is contained in:
Dmitry Shibanov
2023-02-07 10:39:57 +01:00
committed by GitHub
parent dfc7050017
commit 71129be509
2 changed files with 10 additions and 1 deletions

View File

@ -93,7 +93,8 @@ Describe "Tests" {
It "Validate Pyinstaller" {
"pip install pyinstaller" | Should -ReturnZeroExitCode
"pyinstaller --onefile ./sources/simple-test.py" | Should -ReturnZeroExitCode
"./dist/simple-test" | Should -ReturnZeroExitCode
$distPath = [IO.Path]::Combine($pwd, "dist", "simple-test")
"$distPath" | Should -ReturnZeroExitCode
}
}