Repository: reef Updated Branches: refs/heads/master 97f9eca4b -> 4c989421b
[REEF-1311] Exclude StreamingRemoteManagerTest from AppVeyor coverage temporarily This change: * excludes StreamingRemoteManagerTest from AppVeyor test * ignores UnauthorizedAccessException thrown in ReefFunctionalTests when deleting temp folder JIRA: [REEF-1311](https://issues.apache.org/jira/browse/REEF-1311) Pull request: This closes #921 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/4c989421 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/4c989421 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/4c989421 Branch: refs/heads/master Commit: 4c989421b77633aa2114bbbcca990a896c676605 Parents: 97f9eca Author: Mariia Mykhailova <[email protected]> Authored: Mon Apr 4 12:21:34 2016 -0700 Committer: Markus Weimer <[email protected]> Committed: Wed Apr 6 15:40:52 2016 -0700 ---------------------------------------------------------------------- appveyor.yml | 13 ++++++++++++- .../Functional/ReefFunctionalTest.cs | 6 +++++- 2 files changed, 17 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/4c989421/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index 000c86e..0a664ef 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,8 +31,19 @@ install: build_script: - cmd: msbuild .\lang\cs\Org.Apache.REEF.sln /p:Configuration="Debug" /p:Platform="x64" /m +# test script temporarily excludes StreamingRemoteManagerTest (see REEF-1311) +# to be reverted as part of REEF-1243 test_script: - - cmd: msbuild .\lang\cs\TestRunner.proj /p:Configuration="Debug" /p:Platform="x64" + - cmd: cd .\lang\cs + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Client.Tests\Org.Apache.REEF.Client.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Common.Tests\Org.Apache.REEF.Common.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Evaluator.Tests\Org.Apache.REEF.Evaluator.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.IMRU.Tests\Org.Apache.REEF.IMRU.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.IO.Tests\Org.Apache.REEF.IO.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Network.Tests\Org.Apache.REEF.Network.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Tang.Tests\Org.Apache.REEF.Tang.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Tests\Org.Apache.REEF.Tests.dll + - cmd: .\packages\xunit.runner.console.2.1.0\tools\xunit.console.exe .\bin\x64\Debug\Org.Apache.REEF.Wake.Tests\Org.Apache.REEF.Wake.Tests.dll -class Org.Apache.REEF.Wake.Tests.ClockTest -class Org.Apache.REEF.Wake.Tests.MultiCodecTest -class Org.Apache.REEF.Wake.Tests.PubSubSubjectTest -class Org.Apache.REEF.Wake.Tests.RemoteManagerTest -class Org.Apache.REEF.Wake.Tests.StreamingTransportTest -class Org.Apache.REEF.Wake.Tests.TimeTest -class Org.Apache.REEF.Wake.Tests.TransportTest notifications: - provider: Email http://git-wip-us.apache.org/repos/asf/reef/blob/4c989421/lang/cs/Org.Apache.REEF.Tests/Functional/ReefFunctionalTest.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tests/Functional/ReefFunctionalTest.cs b/lang/cs/Org.Apache.REEF.Tests/Functional/ReefFunctionalTest.cs index 4b1bf0c..aaa296d 100644 --- a/lang/cs/Org.Apache.REEF.Tests/Functional/ReefFunctionalTest.cs +++ b/lang/cs/Org.Apache.REEF.Tests/Functional/ReefFunctionalTest.cs @@ -139,7 +139,11 @@ namespace Org.Apache.REEF.Tests.Functional catch (IOException) { // do not fail if clean up is unsuccessful - } + } + catch (UnauthorizedAccessException) + { + // do not fail if clean up is unsuccessful + } } public void Dispose()
