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 77e9f3d commit 68204d2
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 @@ -45,7 +45,7 @@ function run {
# --traverse-namespace is required for python 3.8 https://stackoverflow.com/q/58556183
$pyver = [System.Version]::new($env:PYTHON_VERSION)
if ($pyver.Major -gt 3 -or ($pyver.Major -eq 3 -and $pyver.Minor -ge 9)) {
coverage run --source=pywinauto -m nose2 -exclude=testall -vvv pywinauto\unittests
coverage run --source=pywinauto -m nose2 --exclude=testall -vvv pywinauto\unittests
coverage xml -o $input
} else {
nosetests --nologcapture --traverse-namespace --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 68204d2

Please sign in to comment.