Skip to content
Snippets Groups Projects
Commit 63618161 authored by Stanley Goldman's avatar Stanley Goldman
Browse files

Merge branch 'fixes/dont-run-time-sensitive-tests' into enhancement/metrics

parents 7ddd7da3 66703cab
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ test:
categories:
except:
- DoNotRunOnAppVeyor
- TimeSensitive
artifacts:
- path: unity\TestProject\Assets\Editor\*.dll
- path: unity\TestProject\Assets\Editor\*.pdb
\ No newline at end of file
......@@ -10,6 +10,7 @@ using System.Threading.Tasks;
namespace IntegrationTests
{
[TestFixture, Category("TimeSensitive")]
class RepositoryManagerTests : BaseGitEnvironmentTest
{
[Test]
......
......@@ -9,6 +9,7 @@ using System.Threading.Tasks;
namespace IntegrationTests
{
[TestFixture, Category("TimeSensitive")]
class RepositoryWatcherTests : BaseGitEnvironmentTest
{
private const int ThreadSleepTimeout = 2000;
......
......@@ -11,6 +11,9 @@
<NamedTestSelector>
<TestName>IntegrationTests.GitSetupTests.InstallGit</TestName>
</NamedTestSelector>
<NamedTestSelector>
<TestName>IntegrationTests.GitSetupTests.VerifyGitLfsBundle</TestName>
</NamedTestSelector>
</IgnoredTests>
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
<RunPostBuildEvents>True</RunPostBuildEvents>
......
<ProjectConfiguration>
<Settings>
<IgnoredTests>
<NamedTestSelector>
<TestName>IntegrationTests.SchedulerTests.ChainingOnDifferentSchedulers</TestName>
</NamedTestSelector>
<NamedTestSelector>
<TestName>IntegrationTests.SchedulerTests.ConcurrentSchedulerWithDependencyOrdering</TestName>
</NamedTestSelector>
<NamedTestSelector>
<TestName>IntegrationTests.SchedulerTests.NonUITasksAlwaysRunOnDifferentThreadFromUITasks</TestName>
</NamedTestSelector>
</IgnoredTests>
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
</Settings>
</ProjectConfiguration>
\ No newline at end of file
......@@ -6,6 +6,11 @@
<HiddenComponentWarnings>
<Value>PostBuildEventDisabled</Value>
</HiddenComponentWarnings>
<IgnoredTests>
<FixtureTestSelector>
<FixtureName>UnitTests.RepositoryManagerTests</FixtureName>
</FixtureTestSelector>
</IgnoredTests>
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
</Settings>
</ProjectConfiguration>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment