Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Oct 8, 2023
1 parent c99a277 commit a493bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/runTestsuite.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function run {
#nosetests --all-modules --with-xunit pywinauto/unittests
# --traverse-namespace is required for python 3.8 https://stackoverflow.com/q/58556183
$pyver = [System.Version]::new($env:PYTHON_VERSION)
if if ($pyver.Major -gt 3 -or ($pyver.Major -eq 3 -and $pyver.Minor -ge 9)) {
if ($pyver.Major -gt 3 -or ($pyver.Major -eq 3 -and $pyver.Minor -ge 9)) {
Write-Host "run nose2"
nose2 --nologcapture --exclude=testall --with-xunit --with-coverage --cover-html --cover-html-dir=Coverage_report --cover-package=pywinauto --verbosity=3 pywinauto\unittests

Expand Down

0 comments on commit a493bec

Please sign in to comment.