1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Fix flaky tests not running at all with environment variable set

This commit is contained in:
Salman Ahmed 2022-07-07 04:24:10 +03:00
parent 1ff3b19360
commit 9115072917

View File

@ -18,7 +18,7 @@ namespace osu.Game.Tests
} }
public FlakyTestAttribute(int tryCount) public FlakyTestAttribute(int tryCount)
: base(Environment.GetEnvironmentVariable("OSU_TESTS_FAIL_FLAKY") == "1" ? 0 : tryCount) : base(Environment.GetEnvironmentVariable("OSU_TESTS_FAIL_FLAKY") == "1" ? 1 : tryCount)
{ {
} }
} }