mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-23 07:25:11 +00:00
Fix test execution
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
@@ -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))
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"projectUrl": "",
|
||||
"licenseUrl": "",
|
||||
"commands": {
|
||||
"test": "xunit.runner.dnx"
|
||||
"test": "xunit.runner.dnx -parallel none"
|
||||
},
|
||||
"frameworks": {
|
||||
"dnxcore50": {
|
||||
|
||||
Reference in New Issue
Block a user