-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore failed test for GCP to verify others test execution
- Loading branch information
1 parent
bff3f46
commit fcb620c
Showing
4 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
* Copyright (c) 2012-2019 Snowflake Computing Inc. All right reserved. | ||
*/ | ||
package net.snowflake.client; | ||
|
||
/** Run tests only on specified cloud provider or ignore */ | ||
public class RunningOnGCP implements ConditionalIgnoreRule.IgnoreCondition { | ||
public boolean isSatisfied() { | ||
String cloudProvider = TestUtil.systemGetEnv("JDBC_TEST_CLOUD_PROVIDER"); | ||
return cloudProvider != null && cloudProvider.equalsIgnoreCase("GCP"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters