Skip to content

Commit 0fda641

Browse files
authored
Merge pull request #40 from pywin32/xoviat-patch-1
Tests: remove .py files from build directory before running sonar.
2 parents bd00952 + b8ab873 commit 0fda641

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,12 @@ on_finish:
121121
(Resolve-Path .\junit-results.xml)
122122
)
123123
$LastExitCode = 0
124-
124+
125+
- ps: |
126+
cd build
127+
ls -filter *.py -recurse | foreach {rm $_.fullname}
128+
cd ..
129+
125130
- ps: |
126131
if (-Not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
127132
sonar-scanner `

0 commit comments

Comments
 (0)