Fix test execution

This commit is contained in:
Adam Hathcock
2016-01-01 11:23:01 +00:00
parent a0a418e90b
commit 5647a424e7
3 changed files with 3 additions and 3 deletions

View File

@@ -383,7 +383,7 @@ namespace SharpCompress.Test
}
stream = new MemoryStream(stream.ToArray());
File.WriteAllBytes("foo.zip", stream.ToArray());
File.WriteAllBytes(Path.Combine(SCRATCH_FILES_PATH, "foo.zip"), stream.ToArray());
using (var zipArchive = ZipArchive.Open(stream))
{

View File

@@ -209,7 +209,7 @@ namespace SharpCompress.Test
}
stream = new MemoryStream(stream.ToArray());
File.WriteAllBytes("foo.zip", stream.ToArray());
File.WriteAllBytes(Path.Combine(SCRATCH_FILES_PATH, "foo.zip"), stream.ToArray());
using (IReader zipReader = ZipReader.Open(stream))
{

View File

@@ -6,7 +6,7 @@
"projectUrl": "",
"licenseUrl": "",
"commands": {
"test": "xunit.runner.dnx"
"test": "xunit.runner.dnx -parallel none"
},
"frameworks": {
"dnxcore50": {