Skip to content

Commit ee7e3d6

Browse files
remove windows from matrix
1 parent 2f44ee0 commit ee7e3d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/develop_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{matrix.os}}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, windows-latest]
16+
os: [ubuntu-latest]
1717

1818
steps:
1919
- uses: actions/checkout@v2

tests/APITests/UserTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public UserTests(WebApplicationFactory<Startup> app)
2626
{
2727
builder.ConfigureAppConfiguration((context, configuration) =>
2828
{
29-
configuration.AddJsonFile(Path.Combine(".", "APITests", "appSettings.test.json"));
29+
configuration.AddJsonFile(Path.Combine(".", "config", "appSettings.test.json"));
3030
}).Build();
3131
});
3232
var s = app.Services.GetRequiredService<IMongoClient>();
@@ -36,7 +36,7 @@ public UserTests(WebApplicationFactory<Startup> app)
3636
[Fact]
3737
public async Task Post_ShouldReturnNoContent()
3838
{
39-
var config = JsonConvert.DeserializeObject<IDictionary<string, IList<Configuration.Models.Configuration>>>(File.ReadAllText(Path.Combine("APITests", ".mstkc.json")));
39+
var config = JsonConvert.DeserializeObject<IDictionary<string, IList<Configuration.Models.Configuration>>>(File.ReadAllText(Path.Combine("config", ".mstkc.json")));
4040
var profile = new Profile
4141
{
4242
FileName = "mstkc",

0 commit comments

Comments
 (0)