Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 486bb17

Browse files
Using a category to isolate the execution of time sensitive tests
1 parent 96d6023 commit 486bb17

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ test:
4242
categories:
4343
except:
4444
- DoNotRunOnAppVeyor
45+
- TimeSensitive
4546
artifacts:
4647
- path: unity\TestProject\Assets\Editor\*.dll
4748
- path: unity\TestProject\Assets\Editor\*.pdb

src/tests/IntegrationTests/Events/RepositoryManagerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
namespace IntegrationTests
1212
{
13+
[TestFixture, Category("TimeSensitive")]
1314
class RepositoryManagerTests : BaseGitEnvironmentTest
1415
{
1516
[Test]

src/tests/IntegrationTests/Events/RepositoryWatcherTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
namespace IntegrationTests
1111
{
12+
[TestFixture, Category("TimeSensitive")]
1213
class RepositoryWatcherTests : BaseGitEnvironmentTest
1314
{
1415
private const int ThreadSleepTimeout = 2000;

0 commit comments

Comments
 (0)