Skip to content

Commit 2ad2d40

Browse files
committed
Revert temporary fix for AppVeyor test reporting
1 parent 0d52834 commit 2ad2d40

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

appveyor.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,11 @@ test_script:
116116
- cmd: dotnet test -c Release --no-build --logger "trx;LogFileName=PostGis20.trx" --results-directory %APPVEYOR_BUILD_FOLDER% Tests.NHibernate.Spatial.PostGis20
117117

118118
after_test:
119-
# NOTE: Temporary fix for test log file names - remove once new dotnet SDK version installed on AppVeyor; see:
120-
# https://github.com/Microsoft/vstest/issues/1951
121119
- ps: $wc = New-Object 'System.Net.WebClient'
122120
- ps: $uri = "https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)"
123-
- ps: $wc.UploadFile($uri, (Resolve-Path MsSql2008_*.trx))
124-
- ps: $wc.UploadFile($uri, (Resolve-Path MsSql2012_*.trx))
121+
- ps: $wc.UploadFile($uri, (Resolve-Path MsSql2008.trx))
122+
- ps: $wc.UploadFile($uri, (Resolve-Path MsSql2012.trx))
125123
# - ps: $wc.UploadFile($uri, (Resolve-Path MySQL.trx))
126124
# - ps: $wc.UploadFile($uri, (Resolve-Path MySQL57.trx))
127-
- ps: $wc.UploadFile($uri, (Resolve-Path PostGis_*.trx))
128-
- ps: $wc.UploadFile($uri, (Resolve-Path PostGis20_*.trx))
125+
- ps: $wc.UploadFile($uri, (Resolve-Path PostGis.trx))
126+
- ps: $wc.UploadFile($uri, (Resolve-Path PostGis20.trx))

0 commit comments

Comments
 (0)