Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[tests] skip performance tests (w/ .apk changes) on non-commercial builds #9328

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/MSBuildDeviceIntegration/Tests/PerformanceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ public void Build_CSharp_Change ()
[Retry (Retry)]
public void Build_AndroidResource_Change ()
{
AssertCommercialBuild (); // If <BuildApk/> runs, this test will fail without Fast Deployment

var proj = CreateApplicationProject ();
using (var builder = CreateBuilderWithoutLogFile ()) {
builder.Target = "Build";
Expand All @@ -202,6 +204,8 @@ public void Build_AndroidResource_Change ()
[Retry (Retry)]
public void Build_AndroidAsset_Change ()
{
AssertCommercialBuild (); // If <BuildApk/> runs, this test will fail without Fast Deployment

var bytes = new byte [1024*1024*10];
var rnd = new Random ();
rnd.NextBytes (bytes);
Expand Down Expand Up @@ -260,6 +264,8 @@ public void Build_JLO_Change ()
[Retry (Retry)]
public void Build_AndroidManifest_Change ()
{
AssertCommercialBuild (); // If <BuildApk/> runs, this test will fail without Fast Deployment

var proj = CreateApplicationProject ();
using (var builder = CreateBuilderWithoutLogFile ()) {
builder.Target = "Build";
Expand Down
Loading