forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TeamCity: Enable 'MM Upstream' projects (hashicorp#8646) (hashicorp#1…
…5512) * Make adding a cron trigger dependent on the user-supplied environment value * Rename helpers.kt to test_utils.kt * Add unit tests for `ShouldAddTrigger` function * Update capitalisation of test util function names * Add `ENVIRONMENT` param to TeamCity projects, making it visible to non-admins * Fix copyright header and package for new helpers.kt file Signed-off-by: Modular Magician <[email protected]>
- Loading branch information
1 parent
6051057
commit c619b50
Showing
7 changed files
with
69 additions
and
14 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,3 @@ | ||
```release-note:none | ||
|
||
``` |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright (c) HashiCorp, Inc. | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
|
||
// this file is copied from mmv1, any changes made here will be overwritten | ||
|
||
package tests | ||
|
||
import jetbrains.buildServer.configs.kotlin.AbsoluteId | ||
|
||
import ClientConfiguration | ||
|
||
fun testConfiguration() : ClientConfiguration { | ||
return ClientConfiguration("custId", "org", "org2", "billingAccount", "billingAccount2", "masterBillingAccount", "credentials", "project", "orgDomain", "projectNumber", "region", "serviceAccount", "zone", "firestoreProject", "identityUser") | ||
} | ||
|
||
fun testVcsRootId() : AbsoluteId { | ||
return AbsoluteId("TerraformProviderFoobar") | ||
} |