Skip to content

Commit

Permalink
ci: update global.json location
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardofslp committed Dec 2, 2023
1 parent ee45fcb commit ea1e933
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .config/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"sdk": {
"version": "6.0.402"
"version": "6.0.402",
"rollForward": "latestMinor",
"allowPrerelease": true
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ docker run joaoopereira/dotnet-test-rerun [somepathtodll] [OPTIONS]
| `--deleteReports` | Delete the generated report files. |
| `--collect` | Enables data collector for the test run. Example: --collect "Code Coverage" or --collect "XPlat Code Coverage" |
| `--mergeCoverageFormat` | Output coverage format. Possible values: Coverage, Cobertura or Xml. It requires dotnet coverage tool to be installed. |
| `--environment, -e` | Sets the value of an environment variable. Can be set multiple times. |
| `--inlineRunSettings` | Allow the configuration of inline run settings. |


Expand Down
7 changes: 0 additions & 7 deletions src/global.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ namespace dotnet_test_rerun.IntegrationTests;

public class DotNetTestRerunTests
{
private readonly ITestOutputHelper TestOutputHelper;
private static string _dir = TestUtilities.GetTmpDirectory();
private static readonly IFileSystem FileSystem = new FileSystem();

public DotNetTestRerunTests(ITestOutputHelper testOutputHelper)
{
TestOutputHelper = testOutputHelper;
TestUtilities.CopyFixture(string.Empty, new DirectoryInfo(_dir));
}

Expand Down

0 comments on commit ea1e933

Please # to comment.