-
-
Notifications
You must be signed in to change notification settings - Fork 855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Dependencies #1378
Merged
Merged
Update Dependencies #1378
Changes from 10 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6fed5f6
Update test 3rd party libraries
JimBobSquarePants feb4435
Update Test SDK.
JimBobSquarePants aeb1c1c
Tweak decode cancel timings
JimBobSquarePants d51b725
Bump src deps.
JimBobSquarePants e94f879
Fix missing dll.config file
JimBobSquarePants 631b578
Update xunit runner
JimBobSquarePants 94ba508
Try System.Drawing BMP Decoder everywhere.
JimBobSquarePants 75cfa35
Revert "Try System.Drawing BMP Decoder everywhere."
JimBobSquarePants 179563d
Skip tests on Linux with known Magick issue
JimBobSquarePants bd59569
Add rule to coverlet settings.
JimBobSquarePants 2a1587e
Merge branch 'master' into js/update-dependencies
JimBobSquarePants 1ea5e98
Remove ActiveIssue filters
JimBobSquarePants ceb6dd5
Merge branch 'master' into js/update-dependencies
JimBobSquarePants c061218
Disable failing RemoteExecutor tests on NETFX.
JimBobSquarePants abbf9e7
Split out progressive jpeg decoding tests
JimBobSquarePants e74c901
Skip limited buffer bitmap test on NETFX
JimBobSquarePants 65b1996
Add skip for dotnet xunit
JimBobSquarePants 314e9f6
Don't use generics.
JimBobSquarePants File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<RunSettings> | ||
<RunConfiguration> | ||
<!--Used in conjunction with ActiveIssueAttribute to skip tests with known issues--> | ||
<TestCaseFilter>category!=failing</TestCaseFilter> | ||
</RunConfiguration> | ||
</RunSettings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,10 +129,10 @@ public async Task DecodeAsnc_DegenerateMemoryRequest_ShouldTranslateTo_ImageForm | |
[Theory] | ||
[InlineData(TestImages.Jpeg.Baseline.Jpeg420Small, 0)] | ||
[InlineData(TestImages.Jpeg.Issues.ExifGetString750Transform, 1)] | ||
[InlineData(TestImages.Jpeg.Issues.ExifGetString750Transform, 10)] | ||
[InlineData(TestImages.Jpeg.Issues.ExifGetString750Transform, 15)] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Test was flaky on NET Core 2.1, this seemed to make it less so. |
||
[InlineData(TestImages.Jpeg.Issues.ExifGetString750Transform, 30)] | ||
[InlineData(TestImages.Jpeg.Issues.BadRstProgressive518, 1)] | ||
[InlineData(TestImages.Jpeg.Issues.BadRstProgressive518, 10)] | ||
[InlineData(TestImages.Jpeg.Issues.BadRstProgressive518, 15)] | ||
[InlineData(TestImages.Jpeg.Issues.BadRstProgressive518, 30)] | ||
public async Task Decode_IsCancellable(string fileName, int cancellationDelayMs) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,7 +170,10 @@ private static void PrepareRemoteExecutor() | |
} | ||
|
||
string testProjectConfigPath = TestAssemblyFile.FullName + ".config"; | ||
File.Copy(testProjectConfigPath, remoteExecutorConfigPath); | ||
if (File.Exists(testProjectConfigPath)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file only exists if there are binding redirects. |
||
{ | ||
File.Copy(testProjectConfigPath, remoteExecutorConfigPath); | ||
} | ||
|
||
if (Is64BitProcess) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we adding this only because of
ActiveIssueAttribute
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh, I see it's not a trivial feature because of the optional
TargetFrameworkMonikers
parameter. Cool 👍There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it's pretty nifty. Some cool other attributes available also.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not actually needed now but keeping it as it's far too useful!