From 34b7ce24e0d35c52b8e42a060dc9abdf9f5d0c96 Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Sun, 22 Jan 2017 11:38:25 +0100 Subject: [PATCH] Attempt to run both .NET 4.0 and .NET 3.5 tests. --- appveyor.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cb7ae8dd..4296d30e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,11 +7,6 @@ build: project: src\Renci.SshNet.VS2015.sln verbosity: minimal -test: - assemblies: - - src\Renci.SshNet.Tests\bin\Debug\Renci.SshNet.Tests.dll - - src\Renci.SshNet.Tests.NET35\bin\Debug\Renci.SshNet.Tests.NET35.dll - categories: - except: - - integration - - LongRunning \ No newline at end of file +on_success: +- cmd: vstest.console /logger:Appveyor src\Renci.SshNet.Tests\bin\Debug\Renci.SshNet.Tests.dll /TestCaseFilter:"TestCategory!=integration&TestCategory!=LongRunning" +- cmd: vstest.console /logger:Appveyor src\Renci.SshNet.Tests.NET35\bin\Debug\Renci.SshNet.Tests.NET35.dll /TestCaseFilter:"TestCategory!=integration&TestCategory!=LongRunning" \ No newline at end of file