Skip to content

Commit

Permalink
Revert "test: Unskip DataBoostEnabled tests."
Browse files Browse the repository at this point in the history
This reverts commit 809b951.
  • Loading branch information
anuragsrivstv committed Jun 23, 2023
1 parent 809b951 commit 738b8d2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public PartitionedReadTests(PartitionedReadTableFixture fixture) =>
[SkippableTheory, CombinatorialData]
public async Task DistributedReadAsync(bool dataBoostEnabled)
{
Skip.If(dataBoostEnabled, "https://github.com/googleapis/google-cloud-dotnet/issues/10492");
// TODO: xUnit 3 will allow to set traits to individual data rows, and we should use that instead for consistency.
Skip.If(dataBoostEnabled && _fixture.RunningOnEmulator, "DataBoostEnabled is not supported on the emulator");

Expand All @@ -55,6 +56,7 @@ public async Task DistributedReadAsync(bool dataBoostEnabled)
[SkippableTheory, CombinatorialData]
public async Task DistributedQueryAsync(bool dataBoostEnabled)
{
Skip.If(dataBoostEnabled, "https://github.com/googleapis/google-cloud-dotnet/issues/10492");
// TODO: xUnit 3 will allow to set traits to individual data rows, and we should use that instead for consistency.
Skip.If(dataBoostEnabled && _fixture.RunningOnEmulator, "DataBoostEnabled is not supported on the emulator");

Expand Down

0 comments on commit 738b8d2

Please sign in to comment.