From 0baac6aebde6b1727a183225f84f3c7f5f5a908b 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 | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cb7ae8dde..19988da77 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,11 +7,7 @@ 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 +test_script: +- cmd: >- + vstest.console /logger:Appveyor src\Renci.SshNet.Tests\bin\Debug\Renci.SshNet.Tests.dll /TestCaseFilter:"TestCategory!=integration&TestCategory!=LongRunning" + 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