Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Updated to go-github v29.0.3 #369

Merged
merged 7 commits into from
Mar 20, 2020
Merged

Updated to go-github v29.0.3 #369

merged 7 commits into from
Mar 20, 2020

Conversation

benj-fletch
Copy link
Contributor

This is a follow-on PR from #342 to update from go-github v29.0.2 -> v29.0.3. Based on this update the following changes were required:

  • As a result of Move the GitHub Teams API google/go-github#1400 the Teams API deprected calls that were not using organization ID or organization slug in requests. This meant the following changes were needed in this repo:
    • Adding orgID to all calls to the Teams API
    • Addition of an Organisation.id computed value on the provider for ease of retrieval

I cannot seem to run the tests locally as I believe running a Windows system is hampering the execution of some of the TLS based tests. I will investigate this separately to this PR.

However, I believe the acceptance tests should pass, withstanding the issues already identified in #350

Since working on this, @martinssipenko has raised #368 which discusses some issues with previous state management. I am happy for this PR to serve as a first implementation of this ticket and am happy to take guidance on the issues raised in that issue.

@ghost ghost added the size/XXL label Feb 28, 2020
@martinssipenko
Copy link
Contributor

@benj-fletch nice work, do you want me to run acceptance test on your branch?

@benj-fletch
Copy link
Contributor Author

benj-fletch commented Feb 28, 2020

I would appreciate that a lot thanks @martinssipenko ! I need to look into why they are failing. I will also do a make fmt and push that to hopefully make Travis happy.

EDIT: Hmm, looks like an actual failure in the tests for some terraform reference is now failing. Will investigate

@ghost ghost added the dependencies label Feb 28, 2020
@benj-fletch
Copy link
Contributor Author

It appears that the update of TF from v0.12.7 => v.012.20 has introduced backward compatability issues with our version of go. As evidenced by this build vs the latest build on this PR, the downgrade of TF has fixed the test suite.

I believe this is introduced due to this change to the terraform repo which was released in v0.12.14. I think we should align with the go version that is being used by the Terraform main branch (1.12) to try and avoid these issues in future.

@martinssipenko
Copy link
Contributor

Fixes #368

@martinssipenko
Copy link
Contributor

@benj-fletch I've done a bunch of updates in #372 which should hopefully resolve go version discrepancy.

@benj-fletch
Copy link
Contributor Author

Thanks for letting me know! I think it would be worth closing your new PR off and rebasing onto master once that has been done. That will bring us all in line in terms of versions etc.

@martinssipenko
Copy link
Contributor

Thanks for letting me know! I think it would be worth closing your new PR off and rebasing onto master once that has been done. That will bring us all in line in terms of versions etc.

I'm not sure I understand, what do you mean by "I think it would be worth closing your new PR off and rebasing onto master once that has been done." ?

@benj-fletch
Copy link
Contributor Author

Sorry, I mean that we should complete the work under your PR #372, merge it into master and then rebase this PR onto that. My phrasing was not good!

@martinssipenko
Copy link
Contributor

roger

@martinssipenko
Copy link
Contributor

@benj-fletch can you please rebase, after which I will run acceptance tests.

@benj-fletch
Copy link
Contributor Author

Thanks @martinssipenko, I think I have managed to rebase properly, though there were a lot of conflicts! Are we able to use the new actions to run the acc tests?

@martinssipenko
Copy link
Contributor

martinssipenko commented Mar 6, 2020

@benj-fletch can you run go mod tidy? it should remove the dependency to tls provider which is not required anymore.

index 2f0fad1c..516b35fd 100644
--- a/go.mod
+++ b/go.mod
@@ -4,7 +4,6 @@ require (
        github.com/google/go-github/v29 v29.0.3
        github.com/hashicorp/terraform-plugin-sdk v1.7.0
        github.com/kylelemons/godebug v1.1.0
-       github.com/terraform-providers/terraform-provider-tls v1.2.0 // indirect
        golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
 )
 
diff --git a/go.sum b/go.sum
index 9ee96b63..9a793532 100644
--- a/go.sum
+++ b/go.sum
@@ -174,7 +174,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
 github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
 github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
 github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
-github.com/terraform-providers/terraform-provider-tls v1.2.0/go.mod h1:Mxe/v5u31LDW4m32O1z6Ursdh95dpc9Puq6otkYg7tU=
 github.com/ulikunitz/xz v0.5.5 h1:pFrO0lVpTBXLpYw+pnLj6TbvHuyjXMfjGeCwSqCVwok=
 github.com/ulikunitz/xz v0.5.5/go.mod h1:2bypXElzHzzJZwzH67Y6wb67pO62Rzfn7BSiF4ABRW8=
 github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk=

@benj-fletch
Copy link
Contributor Author

@martinssipenko yep - should be gone now!

@martinssipenko
Copy link
Contributor

I ran tests few times and they still are acting flaky, random test cases fail on each run.

@benj-fletch
Copy link
Contributor Author

Are you seeing degradation in reliability compared to master? I don't think anything here will have improved the test suite but hopefully it shouldn't have got worse!

@martinssipenko
Copy link
Contributor

After changing all parallel tests to not be parallel (I think it's why tests fail randomly) I got these results:

$ make testacc
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test $(go list ./... |grep -v 'vendor') -v  -timeout 120m
?   	github.com/terraform-providers/terraform-provider-github	[no test files]
=== RUN   TestAccGithubCollaboratorsDataSource_basic
--- PASS: TestAccGithubCollaboratorsDataSource_basic (11.07s)
=== RUN   TestAccGithubIpRangesDataSource_existing
--- PASS: TestAccGithubIpRangesDataSource_existing (3.89s)
=== RUN   TestAccGithubReleaseDataSource_fetchByLatestNoReleaseReturnsError
--- PASS: TestAccGithubReleaseDataSource_fetchByLatestNoReleaseReturnsError (0.61s)
=== RUN   TestAccGithubReleaseDataSource_latestExisting
--- PASS: TestAccGithubReleaseDataSource_latestExisting (3.99s)
=== RUN   TestAccGithubReleaseDataSource_fetchByIdWithNoIdReturnsError
--- PASS: TestAccGithubReleaseDataSource_fetchByIdWithNoIdReturnsError (0.31s)
=== RUN   TestAccGithubReleaseDataSource_fetchByIdExisting
--- PASS: TestAccGithubReleaseDataSource_fetchByIdExisting (3.89s)
=== RUN   TestAccGithubReleaseDataSource_fetchByTagNoTagReturnsError
--- PASS: TestAccGithubReleaseDataSource_fetchByTagNoTagReturnsError (0.26s)
=== RUN   TestAccGithubReleaseDataSource_fetchByTagExisting
--- PASS: TestAccGithubReleaseDataSource_fetchByTagExisting (4.04s)
=== RUN   TestAccGithubReleaseDataSource_invalidRetrieveMethodReturnsError
--- PASS: TestAccGithubReleaseDataSource_invalidRetrieveMethodReturnsError (0.01s)
=== RUN   TestAccGithubRepositoriesDataSource_basic
--- PASS: TestAccGithubRepositoriesDataSource_basic (4.80s)
=== RUN   TestAccGithubRepositoriesDataSource_Sort
--- PASS: TestAccGithubRepositoriesDataSource_Sort (25.29s)
=== RUN   TestAccGithubRepositoriesDataSource_noMatch
--- PASS: TestAccGithubRepositoriesDataSource_noMatch (5.22s)
=== RUN   TestAccGithubRepositoryDataSource_fullName_noMatchReturnsError
--- PASS: TestAccGithubRepositoryDataSource_fullName_noMatchReturnsError (0.68s)
=== RUN   TestAccGithubRepositoryDataSource_name_noMatchReturnsError
--- PASS: TestAccGithubRepositoryDataSource_name_noMatchReturnsError (0.75s)
=== RUN   TestAccGithubRepositoryDataSource_fullName_existing
--- PASS: TestAccGithubRepositoryDataSource_fullName_existing (5.94s)
=== RUN   TestAccGithubRepositoryDataSource_name_existing
--- PASS: TestAccGithubRepositoryDataSource_name_existing (5.41s)
=== RUN   TestAccGithubTeamDataSource_noMatchReturnsError
--- PASS: TestAccGithubTeamDataSource_noMatchReturnsError (0.52s)
=== RUN   TestAccGithubUserDataSource_noMatchReturnsError
--- PASS: TestAccGithubUserDataSource_noMatchReturnsError (0.72s)
=== RUN   TestAccGithubUserDataSource_existing
--- PASS: TestAccGithubUserDataSource_existing (6.51s)
=== RUN   TestMigrateGithubWebhookStateV0toV1
--- PASS: TestMigrateGithubWebhookStateV0toV1 (0.00s)
=== RUN   TestProvider
--- PASS: TestProvider (0.00s)
=== RUN   TestProvider_impl
--- PASS: TestProvider_impl (0.00s)
=== RUN   TestProvider_individual
--- PASS: TestProvider_individual (1.41s)
=== RUN   TestProvider_anonymous
--- PASS: TestProvider_anonymous (2.56s)
=== RUN   TestProvider_insecure
--- FAIL: TestProvider_insecure (0.04s)
    testing.go:654: Step 1 error: errors during refresh:
        
        Error: GET https://localhost:63889/orgs/msipenko-test: 404  []
        
          on /var/folders/md/52wjnhf54x50bjskcyvbpjkm0000gn/T/tf-test730265853/main.tf line 1:
          (source code not available)
        
        
=== RUN   TestAccGithubBranchProtection_basic
--- PASS: TestAccGithubBranchProtection_basic (35.55s)
=== RUN   TestAccGithubBranchProtection_users
--- PASS: TestAccGithubBranchProtection_users (26.73s)
=== RUN   TestAccGithubBranchProtection_teams
--- PASS: TestAccGithubBranchProtection_teams (91.29s)
=== RUN   TestAccGithubBranchProtection_emptyItems
--- PASS: TestAccGithubBranchProtection_emptyItems (23.19s)
=== RUN   TestAccGithubIssueLabel_basic
--- PASS: TestAccGithubIssueLabel_basic (25.60s)
=== RUN   TestAccGithubIssueLabel_existingLabel
--- PASS: TestAccGithubIssueLabel_existingLabel (19.45s)
=== RUN   TestAccGithubIssueLabel_description
--- PASS: TestAccGithubIssueLabel_description (38.46s)
=== RUN   TestAccGithubMembership_basic
--- PASS: TestAccGithubMembership_basic (8.97s)
=== RUN   TestAccGithubMembership_caseInsensitive
--- PASS: TestAccGithubMembership_caseInsensitive (11.63s)
=== RUN   TestAccGithubOrganizationProject_basic
--- PASS: TestAccGithubOrganizationProject_basic (10.58s)
=== RUN   TestAccGithubOrganizationWebhook_basic
--- PASS: TestAccGithubOrganizationWebhook_basic (13.41s)
=== RUN   TestAccGithubOrganizationWebhook_secret
--- PASS: TestAccGithubOrganizationWebhook_secret (7.67s)
=== RUN   TestAccGithubProjectColumn_basic
--- PASS: TestAccGithubProjectColumn_basic (20.70s)
=== RUN   TestAccGithubRepositoryCollaborator_basic
--- PASS: TestAccGithubRepositoryCollaborator_basic (18.73s)
=== RUN   TestAccGithubRepositoryCollaborator_caseInsensitive
--- PASS: TestAccGithubRepositoryCollaborator_caseInsensitive (22.73s)
=== RUN   TestSuppressDeployKeyDiff
--- PASS: TestSuppressDeployKeyDiff (0.00s)
=== RUN   TestAccGithubRepositoryDeployKey_basic
--- PASS: TestAccGithubRepositoryDeployKey_basic (18.64s)
=== RUN   TestAccGithubRepositoryFile_basic
--- PASS: TestAccGithubRepositoryFile_basic (33.88s)
=== RUN   TestAccGithubRepositoryFile_branch
--- PASS: TestAccGithubRepositoryFile_branch (28.08s)
=== RUN   TestAccGithubRepositoryFile_committer
--- PASS: TestAccGithubRepositoryFile_committer (34.41s)
=== RUN   TestAccGithubRepositoryProject_basic
--- PASS: TestAccGithubRepositoryProject_basic (19.40s)
=== RUN   TestAccGithubRepository_basic
--- PASS: TestAccGithubRepository_basic (20.27s)
=== RUN   TestAccGithubRepository_archive
--- PASS: TestAccGithubRepository_archive (14.08s)
=== RUN   TestAccGithubRepository_archiveUpdate
--- PASS: TestAccGithubRepository_archiveUpdate (19.04s)
=== RUN   TestAccGithubRepository_hasProjects
--- PASS: TestAccGithubRepository_hasProjects (13.00s)
=== RUN   TestAccGithubRepository_defaultBranch
--- PASS: TestAccGithubRepository_defaultBranch (23.25s)
=== RUN   TestAccGithubRepository_templates
--- PASS: TestAccGithubRepository_templates (13.82s)
=== RUN   TestAccGithubRepository_topics
--- PASS: TestAccGithubRepository_topics (37.89s)
=== RUN   TestAccGithubRepository_autoInitForceNew
--- PASS: TestAccGithubRepository_autoInitForceNew (34.92s)
=== RUN   TestAccGithubRepository_createFromTemplate
--- PASS: TestAccGithubRepository_createFromTemplate (14.03s)
=== RUN   TestAccGithubRepositoryWebhook_basic
--- PASS: TestAccGithubRepositoryWebhook_basic (25.80s)
=== RUN   TestAccGithubRepositoryWebhook_secret
--- PASS: TestAccGithubRepositoryWebhook_secret (19.35s)
=== RUN   TestAccGithubTeamMembership_basic
--- PASS: TestAccGithubTeamMembership_basic (30.31s)
=== RUN   TestAccGithubTeamMembership_caseInsensitive
--- PASS: TestAccGithubTeamMembership_caseInsensitive (24.29s)
=== RUN   TestAccGithubTeamRepository_basic
--- FAIL: TestAccGithubTeamRepository_basic (23.42s)
    testing.go:654: Step 0 error: Check failed: Check 1/2 error: GET https://api.github.com/organizations/0/team/3695302/repos/msipenko-test/tf-acc-test-team-q14zr: 404 Not Found []
=== RUN   TestAccCheckGetPermissions
--- PASS: TestAccCheckGetPermissions (0.00s)
=== RUN   TestAccGithubTeam_basic
--- FAIL: TestAccGithubTeam_basic (7.78s)
    testing.go:654: Step 0 error: Check failed: Check 1/8 error: GET https://api.github.com/organizations/0/team/3695304: 404 Not Found []
=== RUN   TestAccGithubTeam_slug
--- FAIL: TestAccGithubTeam_slug (7.60s)
    testing.go:654: Step 0 error: Check failed: Check 1/8 error: GET https://api.github.com/organizations/0/team/3695305: 404 Not Found []
=== RUN   TestAccGithubTeam_hierarchical
--- FAIL: TestAccGithubTeam_hierarchical (13.28s)
    testing.go:654: Step 0 error: Check failed: Check 1/4 error: GET https://api.github.com/organizations/0/team/3695306: 404 Not Found []
=== RUN   TestAccGithubUserGpgKey_basic
--- PASS: TestAccGithubUserGpgKey_basic (7.94s)
=== RUN   TestAccGithubUserInvitationAccepter_basic
--- SKIP: TestAccGithubUserInvitationAccepter_basic (0.00s)
    resource_github_user_invitation_accepter_test.go:21: GITHUB_TEST_COLLABORATOR_TOKEN was not provided, skipping test
=== RUN   TestAccGithubUserSshKey_basic
--- PASS: TestAccGithubUserSshKey_basic (8.20s)
=== RUN   TestAccOrganizationBlock_basic
--- PASS: TestAccOrganizationBlock_basic (8.33s)
=== RUN   TestEtagTransport
--- PASS: TestEtagTransport (0.00s)
=== RUN   TestRateLimitTransport_abuseLimit_get
--- PASS: TestRateLimitTransport_abuseLimit_get (0.00s)
=== RUN   TestRateLimitTransport_abuseLimit_post
--- PASS: TestRateLimitTransport_abuseLimit_post (0.00s)
=== RUN   TestRateLimitTransport_abuseLimit_post_error
--- PASS: TestRateLimitTransport_abuseLimit_post_error (0.00s)
=== RUN   TestAccValidateTeamIDFunc
--- PASS: TestAccValidateTeamIDFunc (0.00s)
=== RUN   TestAccGithubUtilRole_validation
--- PASS: TestAccGithubUtilRole_validation (0.00s)
=== RUN   TestAccGithubUtilTwoPartID
--- PASS: TestAccGithubUtilTwoPartID (0.00s)
FAIL
FAIL	github.com/terraform-providers/terraform-provider-github/github	964.108s
FAIL
make: *** [testacc] Error 1

@martinssipenko
Copy link
Contributor

Looks like there is some regression on teams.

@jcudit
Copy link
Contributor

jcudit commented Mar 12, 2020

I've got this queued for investigation over the next couple of days. I suspect the robots are fighting each other as I've seen GitHub's spam detection delete teams during the span of a test that creates test teams.

Looking good so far though!

@jcudit
Copy link
Contributor

jcudit commented Mar 12, 2020

I am seeing failures whereby an organization with an ID of 0 are being referenced:

https://api.github.com/organizations/0/team/...

Collapsed

2020-03-12T16:26:02.5629703Z ##[section]Starting: Request a runner to run this job
2020-03-12T16:26:02.6426244Z Requesting a hosted runner in current repository's account/organization with labels: 'ubuntu-latest', require runner match: True
2020-03-12T16:26:02.7791212Z Labels matched hosted runners has been found, waiting for one of them get assigned for this job.
2020-03-12T16:26:02.8060629Z ##[section]Finishing: Request a runner to run this job
2020-03-12T16:26:13.9556252Z Current runner version: '2.165.2'
2020-03-12T16:26:13.9557486Z Prepare workflow directory
2020-03-12T16:26:13.9746213Z Prepare all required actions
2020-03-12T16:26:13.9756432Z Download action repository 'actions/checkout@v2.0.0'
2020-03-12T16:26:15.2328450Z Download action repository 'terraformtesting/acceptance-tests@v1.2.0'
2020-03-12T16:26:15.6305657Z Build container for action use: '/home/runner/work/_actions/terraformtesting/acceptance-tests/v1.2.0/Dockerfile'.
2020-03-12T16:26:15.6361421Z ##[command]/usr/bin/docker build -t e87b52:ceb625fd9d2044f39edb1d8bcaee461d "/home/runner/work/_actions/terraformtesting/acceptance-tests/v1.2.0"
2020-03-12T16:26:16.1960248Z Sending build context to Docker daemon  8.192kB
2020-03-12T16:26:16.1975121Z 
2020-03-12T16:26:16.1975428Z Step 1/3 : FROM golang:1.13
2020-03-12T16:26:16.3416812Z 1.13: Pulling from library/golang
2020-03-12T16:26:16.4092292Z 50e431f79093: Pulling fs layer
2020-03-12T16:26:16.4092605Z dd8c6d374ea5: Pulling fs layer
2020-03-12T16:26:16.4092786Z c85513200d84: Pulling fs layer
2020-03-12T16:26:16.4093000Z 55769680e827: Pulling fs layer
2020-03-12T16:26:16.4098073Z 15357f5e50c4: Pulling fs layer
2020-03-12T16:26:16.4098434Z e2d9b328fba5: Pulling fs layer
2020-03-12T16:26:16.4098694Z f8e0159fc852: Pulling fs layer
2020-03-12T16:26:16.4098945Z 15357f5e50c4: Waiting
2020-03-12T16:26:16.4099231Z e2d9b328fba5: Waiting
2020-03-12T16:26:16.4099478Z f8e0159fc852: Waiting
2020-03-12T16:26:16.4099790Z 55769680e827: Waiting
2020-03-12T16:26:16.6934485Z c85513200d84: Verifying Checksum
2020-03-12T16:26:16.6935748Z c85513200d84: Download complete
2020-03-12T16:26:16.6936151Z dd8c6d374ea5: Verifying Checksum
2020-03-12T16:26:16.6937088Z dd8c6d374ea5: Download complete
2020-03-12T16:26:17.0043884Z 50e431f79093: Verifying Checksum
2020-03-12T16:26:17.0044526Z 50e431f79093: Download complete
2020-03-12T16:26:17.3779190Z 55769680e827: Verifying Checksum
2020-03-12T16:26:17.3783224Z 55769680e827: Download complete
2020-03-12T16:26:17.4597852Z 15357f5e50c4: Verifying Checksum
2020-03-12T16:26:17.4600056Z 15357f5e50c4: Download complete
2020-03-12T16:26:17.5710422Z f8e0159fc852: Verifying Checksum
2020-03-12T16:26:17.5710740Z f8e0159fc852: Download complete
2020-03-12T16:26:18.0751682Z e2d9b328fba5: Verifying Checksum
2020-03-12T16:26:18.0754939Z e2d9b328fba5: Download complete
2020-03-12T16:26:19.2435432Z 50e431f79093: Pull complete
2020-03-12T16:26:19.5412192Z dd8c6d374ea5: Pull complete
2020-03-12T16:26:19.7592418Z c85513200d84: Pull complete
2020-03-12T16:26:22.1811182Z 55769680e827: Pull complete
2020-03-12T16:26:25.3840444Z 15357f5e50c4: Pull complete
2020-03-12T16:26:29.9379941Z e2d9b328fba5: Pull complete
2020-03-12T16:26:29.9870499Z f8e0159fc852: Pull complete
2020-03-12T16:26:29.9892762Z Digest: sha256:e4ea85caf21a7030ac24ffc9b8324823f75a22364c46291af21323a7816f6493
2020-03-12T16:26:29.9949745Z Status: Downloaded newer image for golang:1.13
2020-03-12T16:26:29.9956612Z  ---> 3a7408f53f79
2020-03-12T16:26:29.9957600Z Step 2/3 : COPY entrypoint.sh /entrypoint.sh
2020-03-12T16:26:38.9263035Z  ---> 1a91a41d70fe
2020-03-12T16:26:38.9275299Z Step 3/3 : ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
2020-03-12T16:26:38.9472668Z  ---> Running in bbc86e20f8b9
2020-03-12T16:26:39.8192576Z Removing intermediate container bbc86e20f8b9
2020-03-12T16:26:39.8193460Z  ---> fc53b4f17994
2020-03-12T16:26:39.8220990Z Successfully built fc53b4f17994
2020-03-12T16:26:39.8357198Z Successfully tagged e87b52:ceb625fd9d2044f39edb1d8bcaee461d
2020-03-12T16:26:39.8575911Z ##[group]Run echo ::set-env name=HEAD_SHA::$(
2020-03-12T16:26:39.8576346Z �[36;1mecho ::set-env name=HEAD_SHA::$(�[0m
2020-03-12T16:26:39.8576489Z �[36;1m  jq -rc '.pull_request.head.sha' $GITHUB_EVENT_PATH�[0m
2020-03-12T16:26:39.8576625Z �[36;1m)�[0m
2020-03-12T16:26:39.8576746Z �[36;1mecho ::set-env name=LABEL_NAME::$(�[0m
2020-03-12T16:26:39.8576881Z �[36;1m  jq -rc .label.name $GITHUB_EVENT_PATH�[0m
2020-03-12T16:26:39.8577011Z �[36;1m)�[0m
2020-03-12T16:26:39.8623370Z shell: /bin/bash -e {0}
2020-03-12T16:26:39.8623652Z ##[endgroup]
2020-03-12T16:26:40.0114284Z ##[group]Run echo ::set-env name=RUN_FILTER::$(
2020-03-12T16:26:40.0114494Z �[36;1mecho ::set-env name=RUN_FILTER::$(�[0m
2020-03-12T16:26:40.0114642Z �[36;1m  echo $LABEL_NAME | cut -d/ -f 2�[0m
2020-03-12T16:26:40.0114783Z �[36;1m)�[0m
2020-03-12T16:26:40.0146688Z shell: /bin/bash -e {0}
2020-03-12T16:26:40.0146827Z env:
2020-03-12T16:26:40.0146958Z   HEAD_SHA: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:40.0147105Z   LABEL_NAME: acceptance-test/TestAccGithubTeam
2020-03-12T16:26:40.0147238Z ##[endgroup]
2020-03-12T16:26:40.0348944Z ##[group]Run echo ${LABEL_NAME} | egrep -q "^acceptance-test/"
2020-03-12T16:26:40.0349153Z �[36;1mecho ${LABEL_NAME} | egrep -q "^acceptance-test/"�[0m
2020-03-12T16:26:40.0378900Z shell: /bin/bash -e {0}
2020-03-12T16:26:40.0379073Z env:
2020-03-12T16:26:40.0379256Z   HEAD_SHA: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:40.0379433Z   LABEL_NAME: acceptance-test/TestAccGithubTeam
2020-03-12T16:26:40.0379600Z   RUN_FILTER: TestAccGithubTeam
2020-03-12T16:26:40.0379809Z ##[endgroup]
2020-03-12T16:26:40.0716283Z ##[group]Run actions/checkout@v2.0.0
2020-03-12T16:26:40.0716429Z with:
2020-03-12T16:26:40.0716553Z   ref: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:40.0716695Z   repository: terraformtesting/terraform-provider-github
2020-03-12T16:26:40.0716967Z   token: ***
2020-03-12T16:26:40.0717088Z   persist-credentials: true
2020-03-12T16:26:40.0717214Z   clean: true
2020-03-12T16:26:40.0717332Z   fetch-depth: 1
2020-03-12T16:26:40.0717450Z   lfs: false
2020-03-12T16:26:40.0717567Z env:
2020-03-12T16:26:40.0717693Z   HEAD_SHA: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:40.0717829Z   LABEL_NAME: acceptance-test/TestAccGithubTeam
2020-03-12T16:26:40.0717961Z   RUN_FILTER: TestAccGithubTeam
2020-03-12T16:26:40.0718088Z ##[endgroup]
2020-03-12T16:26:40.4959856Z Added matchers: 'checkout-git'. Problem matchers scan action output for known warning or error strings and report these inline.
2020-03-12T16:26:40.4961075Z Syncing repository: terraformtesting/terraform-provider-github
2020-03-12T16:26:40.4961481Z Working directory is '/home/runner/work/terraform-provider-github/terraform-provider-github'
2020-03-12T16:26:40.4961752Z [command]/usr/bin/git version
2020-03-12T16:26:40.5146354Z git version 2.25.1
2020-03-12T16:26:40.5172204Z Deleting the contents of '/home/runner/work/terraform-provider-github/terraform-provider-github'
2020-03-12T16:26:40.5180935Z [command]/usr/bin/git init /home/runner/work/terraform-provider-github/terraform-provider-github
2020-03-12T16:26:40.5281070Z Initialized empty Git repository in /home/runner/work/terraform-provider-github/terraform-provider-github/.git/
2020-03-12T16:26:40.5292107Z [command]/usr/bin/git remote add origin https://github.com/terraformtesting/terraform-provider-github
2020-03-12T16:26:40.5342883Z [command]/usr/bin/git config --local gc.auto 0
2020-03-12T16:26:40.5381424Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-03-12T16:26:40.5419201Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2020-03-12T16:26:40.5481819Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:40.7751886Z remote: Enumerating objects: 2786, done.        
2020-03-12T16:26:40.7768299Z remote: Counting objects:   0% (1/2786)        
2020-03-12T16:26:40.7768851Z remote: Counting objects:   1% (28/2786)        
2020-03-12T16:26:40.7769283Z remote: Counting objects:   2% (56/2786)        
2020-03-12T16:26:40.7769697Z remote: Counting objects:   3% (84/2786)        
2020-03-12T16:26:40.7770114Z remote: Counting objects:   4% (112/2786)        
2020-03-12T16:26:40.7770555Z remote: Counting objects:   5% (140/2786)        
2020-03-12T16:26:40.7770885Z remote: Counting objects:   6% (168/2786)        
2020-03-12T16:26:40.7779050Z remote: Counting objects:   7% (196/2786)        
2020-03-12T16:26:40.7779818Z remote: Counting objects:   8% (223/2786)        
2020-03-12T16:26:40.7780155Z remote: Counting objects:   9% (251/2786)        
2020-03-12T16:26:40.7788149Z remote: Counting objects:  10% (279/2786)        
2020-03-12T16:26:40.7788577Z remote: Counting objects:  11% (307/2786)        
2020-03-12T16:26:40.7788875Z remote: Counting objects:  12% (335/2786)        
2020-03-12T16:26:40.7789166Z remote: Counting objects:  13% (363/2786)        
2020-03-12T16:26:40.7795716Z remote: Counting objects:  14% (391/2786)        
2020-03-12T16:26:40.7799935Z remote: Counting objects:  15% (418/2786)        
2020-03-12T16:26:40.7800114Z remote: Counting objects:  16% (446/2786)        
2020-03-12T16:26:40.7800447Z remote: Counting objects:  17% (474/2786)        
2020-03-12T16:26:40.7800619Z remote: Counting objects:  18% (502/2786)        
2020-03-12T16:26:40.7800787Z remote: Counting objects:  19% (530/2786)        
2020-03-12T16:26:40.7801034Z remote: Counting objects:  20% (558/2786)        
2020-03-12T16:26:40.7805380Z remote: Counting objects:  21% (586/2786)        
2020-03-12T16:26:40.7805574Z remote: Counting objects:  22% (613/2786)        
2020-03-12T16:26:40.7805734Z remote: Counting objects:  23% (641/2786)        
2020-03-12T16:26:40.7805888Z remote: Counting objects:  24% (669/2786)        
2020-03-12T16:26:40.7806073Z remote: Counting objects:  25% (697/2786)        
2020-03-12T16:26:40.7806240Z remote: Counting objects:  26% (725/2786)        
2020-03-12T16:26:40.7806408Z remote: Counting objects:  27% (753/2786)        
2020-03-12T16:26:40.7806545Z remote: Counting objects:  28% (781/2786)        
2020-03-12T16:26:40.7810301Z remote: Counting objects:  29% (808/2786)        
2020-03-12T16:26:40.7810465Z remote: Counting objects:  30% (836/2786)        
2020-03-12T16:26:40.7810617Z remote: Counting objects:  31% (864/2786)        
2020-03-12T16:26:40.7811301Z remote: Counting objects:  32% (892/2786)        
2020-03-12T16:26:40.7811441Z remote: Counting objects:  33% (920/2786)        
2020-03-12T16:26:40.7811593Z remote: Counting objects:  34% (948/2786)        
2020-03-12T16:26:40.7811729Z remote: Counting objects:  35% (976/2786)        
2020-03-12T16:26:40.7811864Z remote: Counting objects:  36% (1003/2786)        
2020-03-12T16:26:40.7812003Z remote: Counting objects:  37% (1031/2786)        
2020-03-12T16:26:40.7812144Z remote: Counting objects:  38% (1059/2786)        
2020-03-12T16:26:40.7815599Z remote: Counting objects:  39% (1087/2786)        
2020-03-12T16:26:40.7815749Z remote: Counting objects:  40% (1115/2786)        
2020-03-12T16:26:40.7815889Z remote: Counting objects:  41% (1143/2786)        
2020-03-12T16:26:40.7816028Z remote: Counting objects:  42% (1171/2786)        
2020-03-12T16:26:40.7816166Z remote: Counting objects:  43% (1198/2786)        
2020-03-12T16:26:40.7816306Z remote: Counting objects:  44% (1226/2786)        
2020-03-12T16:26:40.7819616Z remote: Counting objects:  45% (1254/2786)        
2020-03-12T16:26:40.7819773Z remote: Counting objects:  46% (1282/2786)        
2020-03-12T16:26:40.7819933Z remote: Counting objects:  47% (1310/2786)        
2020-03-12T16:26:40.7820074Z remote: Counting objects:  48% (1338/2786)        
2020-03-12T16:26:40.7820210Z remote: Counting objects:  49% (1366/2786)        
2020-03-12T16:26:40.7820346Z remote: Counting objects:  50% (1393/2786)        
2020-03-12T16:26:40.7823714Z remote: Counting objects:  51% (1421/2786)        
2020-03-12T16:26:40.7823866Z remote: Counting objects:  52% (1449/2786)        
2020-03-12T16:26:40.7827061Z remote: Counting objects:  53% (1477/2786)        
2020-03-12T16:26:40.7829679Z remote: Counting objects:  54% (1505/2786)        
2020-03-12T16:26:40.7833132Z remote: Counting objects:  55% (1533/2786)        
2020-03-12T16:26:40.7833292Z remote: Counting objects:  56% (1561/2786)        
2020-03-12T16:26:40.7833441Z remote: Counting objects:  57% (1589/2786)        
2020-03-12T16:26:40.7833592Z remote: Counting objects:  58% (1616/2786)        
2020-03-12T16:26:40.7833898Z remote: Counting objects:  59% (1644/2786)        
2020-03-12T16:26:40.7837331Z remote: Counting objects:  60% (1672/2786)        
2020-03-12T16:26:40.7837500Z remote: Counting objects:  61% (1700/2786)        
2020-03-12T16:26:40.7837654Z remote: Counting objects:  62% (1728/2786)        
2020-03-12T16:26:40.7840044Z remote: Counting objects:  63% (1756/2786)        
2020-03-12T16:26:40.7842787Z remote: Counting objects:  64% (1784/2786)        
2020-03-12T16:26:40.7846581Z remote: Counting objects:  65% (1811/2786)        
2020-03-12T16:26:40.7847606Z remote: Counting objects:  66% (1839/2786)        
2020-03-12T16:26:40.7848711Z remote: Counting objects:  67% (1867/2786)        
2020-03-12T16:26:40.7849654Z remote: Counting objects:  68% (1895/2786)        
2020-03-12T16:26:40.7850685Z remote: Counting objects:  69% (1923/2786)        
2020-03-12T16:26:40.7851623Z remote: Counting objects:  70% (1951/2786)        
2020-03-12T16:26:40.7855477Z remote: Counting objects:  71% (1979/2786)        
2020-03-12T16:26:40.7855889Z remote: Counting objects:  72% (2006/2786)        
2020-03-12T16:26:40.7856070Z remote: Counting objects:  73% (2034/2786)        
2020-03-12T16:26:40.7856210Z remote: Counting objects:  74% (2062/2786)        
2020-03-12T16:26:40.7856346Z remote: Counting objects:  75% (2090/2786)        
2020-03-12T16:26:40.7856485Z remote: Counting objects:  76% (2118/2786)        
2020-03-12T16:26:40.7856623Z remote: Counting objects:  77% (2146/2786)        
2020-03-12T16:26:40.7856761Z remote: Counting objects:  78% (2174/2786)        
2020-03-12T16:26:40.7856900Z remote: Counting objects:  79% (2201/2786)        
2020-03-12T16:26:40.7857035Z remote: Counting objects:  80% (2229/2786)        
2020-03-12T16:26:40.7857171Z remote: Counting objects:  81% (2257/2786)        
2020-03-12T16:26:40.7857308Z remote: Counting objects:  82% (2285/2786)        
2020-03-12T16:26:40.7857441Z remote: Counting objects:  83% (2313/2786)        
2020-03-12T16:26:40.7857576Z remote: Counting objects:  84% (2341/2786)        
2020-03-12T16:26:40.7857736Z remote: Counting objects:  85% (2369/2786)        
2020-03-12T16:26:40.7857871Z remote: Counting objects:  86% (2396/2786)        
2020-03-12T16:26:40.7858007Z remote: Counting objects:  87% (2424/2786)        
2020-03-12T16:26:40.7858145Z remote: Counting objects:  88% (2452/2786)        
2020-03-12T16:26:40.7858281Z remote: Counting objects:  89% (2480/2786)        
2020-03-12T16:26:40.7858417Z remote: Counting objects:  90% (2508/2786)        
2020-03-12T16:26:40.7858555Z remote: Counting objects:  91% (2536/2786)        
2020-03-12T16:26:40.7858692Z remote: Counting objects:  92% (2564/2786)        
2020-03-12T16:26:40.7858831Z remote: Counting objects:  93% (2591/2786)        
2020-03-12T16:26:40.7858966Z remote: Counting objects:  94% (2619/2786)        
2020-03-12T16:26:40.7859106Z remote: Counting objects:  95% (2647/2786)        
2020-03-12T16:26:40.7859406Z remote: Counting objects:  96% (2675/2786)        
2020-03-12T16:26:40.7859542Z remote: Counting objects:  97% (2703/2786)        
2020-03-12T16:26:40.7859688Z remote: Counting objects:  98% (2731/2786)        
2020-03-12T16:26:40.7859823Z remote: Counting objects:  99% (2759/2786)        
2020-03-12T16:26:40.7859957Z remote: Counting objects: 100% (2786/2786)        
2020-03-12T16:26:40.7860103Z remote: Counting objects: 100% (2786/2786), done.        
2020-03-12T16:26:40.7860256Z remote: Compressing objects:   0% (1/2467)        
2020-03-12T16:26:40.7862453Z remote: Compressing objects:   1% (25/2467)        
2020-03-12T16:26:40.7884707Z remote: Compressing objects:   2% (50/2467)        
2020-03-12T16:26:40.7884934Z remote: Compressing objects:   3% (75/2467)        
2020-03-12T16:26:40.7904627Z remote: Compressing objects:   4% (99/2467)        
2020-03-12T16:26:40.7946774Z remote: Compressing objects:   5% (124/2467)        
2020-03-12T16:26:40.7986502Z remote: Compressing objects:   6% (149/2467)        
2020-03-12T16:26:40.8003128Z remote: Compressing objects:   7% (173/2467)        
2020-03-12T16:26:40.8049900Z remote: Compressing objects:   8% (198/2467)        
2020-03-12T16:26:40.8111723Z remote: Compressing objects:   9% (223/2467)        
2020-03-12T16:26:40.8172973Z remote: Compressing objects:  10% (247/2467)        
2020-03-12T16:26:40.8243443Z remote: Compressing objects:  11% (272/2467)        
2020-03-12T16:26:40.8330919Z remote: Compressing objects:  12% (297/2467)        
2020-03-12T16:26:40.8364244Z remote: Compressing objects:  13% (321/2467)        
2020-03-12T16:26:40.8416504Z remote: Compressing objects:  14% (346/2467)        
2020-03-12T16:26:40.8453498Z remote: Compressing objects:  15% (371/2467)        
2020-03-12T16:26:40.8517016Z remote: Compressing objects:  16% (395/2467)        
2020-03-12T16:26:40.8679977Z remote: Compressing objects:  17% (420/2467)        
2020-03-12T16:26:40.8710069Z remote: Compressing objects:  18% (445/2467)        
2020-03-12T16:26:40.8721263Z remote: Compressing objects:  19% (469/2467)        
2020-03-12T16:26:40.8795997Z remote: Compressing objects:  20% (494/2467)        
2020-03-12T16:26:40.8832723Z remote: Compressing objects:  21% (519/2467)        
2020-03-12T16:26:40.8869711Z remote: Compressing objects:  22% (543/2467)        
2020-03-12T16:26:40.8905200Z remote: Compressing objects:  23% (568/2467)        
2020-03-12T16:26:40.8938744Z remote: Compressing objects:  24% (593/2467)        
2020-03-12T16:26:40.9015800Z remote: Compressing objects:  25% (617/2467)        
2020-03-12T16:26:40.9109105Z remote: Compressing objects:  26% (642/2467)        
2020-03-12T16:26:40.9172233Z remote: Compressing objects:  27% (667/2467)        
2020-03-12T16:26:40.9228621Z remote: Compressing objects:  28% (691/2467)        
2020-03-12T16:26:40.9278057Z remote: Compressing objects:  29% (716/2467)        
2020-03-12T16:26:40.9320925Z remote: Compressing objects:  30% (741/2467)        
2020-03-12T16:26:40.9357915Z remote: Compressing objects:  31% (765/2467)        
2020-03-12T16:26:40.9417100Z remote: Compressing objects:  32% (790/2467)        
2020-03-12T16:26:40.9493266Z remote: Compressing objects:  33% (815/2467)        
2020-03-12T16:26:40.9522430Z remote: Compressing objects:  34% (839/2467)        
2020-03-12T16:26:40.9569633Z remote: Compressing objects:  35% (864/2467)        
2020-03-12T16:26:40.9598602Z remote: Compressing objects:  36% (889/2467)        
2020-03-12T16:26:40.9631019Z remote: Compressing objects:  37% (913/2467)        
2020-03-12T16:26:40.9768629Z remote: Compressing objects:  38% (938/2467)        
2020-03-12T16:26:40.9916232Z remote: Compressing objects:  39% (963/2467)        
2020-03-12T16:26:40.9952107Z remote: Compressing objects:  40% (987/2467)        
2020-03-12T16:26:40.9964383Z remote: Compressing objects:  41% (1012/2467)        
2020-03-12T16:26:41.0014664Z remote: Compressing objects:  42% (1037/2467)        
2020-03-12T16:26:41.0048568Z remote: Compressing objects:  43% (1061/2467)        
2020-03-12T16:26:41.0151191Z remote: Compressing objects:  44% (1086/2467)        
2020-03-12T16:26:41.0186134Z remote: Compressing objects:  45% (1111/2467)        
2020-03-12T16:26:41.0260823Z remote: Compressing objects:  46% (1135/2467)        
2020-03-12T16:26:41.0306190Z remote: Compressing objects:  47% (1160/2467)        
2020-03-12T16:26:41.0352742Z remote: Compressing objects:  48% (1185/2467)        
2020-03-12T16:26:41.0399341Z remote: Compressing objects:  49% (1209/2467)        
2020-03-12T16:26:41.0417353Z remote: Compressing objects:  50% (1234/2467)        
2020-03-12T16:26:41.0451679Z remote: Compressing objects:  51% (1259/2467)        
2020-03-12T16:26:41.0487089Z remote: Compressing objects:  52% (1283/2467)        
2020-03-12T16:26:41.0523369Z remote: Compressing objects:  53% (1308/2467)        
2020-03-12T16:26:41.0576786Z remote: Compressing objects:  54% (1333/2467)        
2020-03-12T16:26:41.0633042Z remote: Compressing objects:  55% (1357/2467)        
2020-03-12T16:26:41.0703753Z remote: Compressing objects:  56% (1382/2467)        
2020-03-12T16:26:41.0799758Z remote: Compressing objects:  57% (1407/2467)        
2020-03-12T16:26:41.0835828Z remote: Compressing objects:  58% (1431/2467)        
2020-03-12T16:26:41.0900931Z remote: Compressing objects:  59% (1456/2467)        
2020-03-12T16:26:41.0927344Z remote: Compressing objects:  60% (1481/2467)        
2020-03-12T16:26:41.1029870Z remote: Compressing objects:  61% (1505/2467)        
2020-03-12T16:26:41.1087434Z remote: Compressing objects:  62% (1530/2467)        
2020-03-12T16:26:41.1133772Z remote: Compressing objects:  63% (1555/2467)        
2020-03-12T16:26:41.1192968Z remote: Compressing objects:  64% (1579/2467)        
2020-03-12T16:26:41.1242725Z remote: Compressing objects:  65% (1604/2467)        
2020-03-12T16:26:41.1284423Z remote: Compressing objects:  66% (1629/2467)        
2020-03-12T16:26:41.1285036Z remote: Compressing objects:  67% (1653/2467)        
2020-03-12T16:26:41.1288737Z remote: Compressing objects:  68% (1678/2467)        
2020-03-12T16:26:41.1304977Z remote: Compressing objects:  69% (1703/2467)        
2020-03-12T16:26:41.1395260Z remote: Compressing objects:  70% (1727/2467)        
2020-03-12T16:26:41.1408224Z remote: Compressing objects:  71% (1752/2467)        
2020-03-12T16:26:41.1522924Z remote: Compressing objects:  72% (1777/2467)        
2020-03-12T16:26:41.1617328Z remote: Compressing objects:  73% (1801/2467)        
2020-03-12T16:26:41.1766792Z remote: Compressing objects:  74% (1826/2467)        
2020-03-12T16:26:41.1797066Z remote: Compressing objects:  75% (1851/2467)        
2020-03-12T16:26:41.2066313Z remote: Compressing objects:  76% (1875/2467)        
2020-03-12T16:26:41.2301412Z remote: Compressing objects:  77% (1900/2467)        
2020-03-12T16:26:41.2559425Z remote: Compressing objects:  78% (1925/2467)        
2020-03-12T16:26:41.2841077Z remote: Compressing objects:  79% (1949/2467)        
2020-03-12T16:26:41.3010398Z remote: Compressing objects:  80% (1974/2467)        
2020-03-12T16:26:41.3017043Z remote: Compressing objects:  81% (1999/2467)        
2020-03-12T16:26:41.3018512Z remote: Compressing objects:  82% (2023/2467)        
2020-03-12T16:26:41.3036583Z remote: Compressing objects:  83% (2048/2467)        
2020-03-12T16:26:41.3082456Z remote: Compressing objects:  84% (2073/2467)        
2020-03-12T16:26:41.3095130Z remote: Compressing objects:  85% (2097/2467)        
2020-03-12T16:26:41.3114295Z remote: Compressing objects:  86% (2122/2467)        
2020-03-12T16:26:41.3125655Z remote: Compressing objects:  87% (2147/2467)        
2020-03-12T16:26:41.3135151Z remote: Compressing objects:  88% (2171/2467)        
2020-03-12T16:26:41.3135596Z remote: Compressing objects:  89% (2196/2467)        
2020-03-12T16:26:41.3136561Z remote: Compressing objects:  90% (2221/2467)        
2020-03-12T16:26:41.3140485Z remote: Compressing objects:  91% (2245/2467)        
2020-03-12T16:26:41.3146306Z remote: Compressing objects:  92% (2270/2467)        
2020-03-12T16:26:41.3146971Z remote: Compressing objects:  93% (2295/2467)        
2020-03-12T16:26:41.3147331Z remote: Compressing objects:  94% (2319/2467)        
2020-03-12T16:26:41.3147693Z remote: Compressing objects:  95% (2344/2467)        
2020-03-12T16:26:41.3147997Z remote: Compressing objects:  96% (2369/2467)        
2020-03-12T16:26:41.3148291Z remote: Compressing objects:  97% (2393/2467)        
2020-03-12T16:26:41.3162419Z remote: Compressing objects:  98% (2418/2467)        
2020-03-12T16:26:41.3163010Z remote: Compressing objects:  99% (2443/2467)        
2020-03-12T16:26:41.3163314Z remote: Compressing objects: 100% (2467/2467)        
2020-03-12T16:26:41.3163569Z remote: Compressing objects: 100% (2467/2467), done.        
2020-03-12T16:26:41.3288686Z Receiving objects:   0% (1/2786)
2020-03-12T16:26:41.3316201Z Receiving objects:   1% (28/2786)
2020-03-12T16:26:41.3329178Z Receiving objects:   2% (56/2786)
2020-03-12T16:26:41.3342252Z Receiving objects:   3% (84/2786)
2020-03-12T16:26:41.3681353Z Receiving objects:   4% (112/2786)
2020-03-12T16:26:41.3781875Z Receiving objects:   5% (140/2786)
2020-03-12T16:26:41.3795136Z Receiving objects:   6% (168/2786)
2020-03-12T16:26:41.3808956Z Receiving objects:   7% (196/2786)
2020-03-12T16:26:41.3853483Z Receiving objects:   8% (223/2786)
2020-03-12T16:26:41.3890836Z Receiving objects:   9% (251/2786)
2020-03-12T16:26:41.3897125Z Receiving objects:  10% (279/2786)
2020-03-12T16:26:41.3912472Z Receiving objects:  11% (307/2786)
2020-03-12T16:26:41.3923305Z Receiving objects:  12% (335/2786)
2020-03-12T16:26:41.4029821Z Receiving objects:  13% (363/2786)
2020-03-12T16:26:41.4040925Z Receiving objects:  14% (391/2786)
2020-03-12T16:26:41.4111114Z Receiving objects:  15% (418/2786)
2020-03-12T16:26:41.4157914Z Receiving objects:  16% (446/2786)
2020-03-12T16:26:41.4174389Z Receiving objects:  17% (474/2786)
2020-03-12T16:26:41.4221766Z Receiving objects:  18% (502/2786)
2020-03-12T16:26:41.4269846Z Receiving objects:  19% (530/2786)
2020-03-12T16:26:41.4295529Z Receiving objects:  20% (558/2786)
2020-03-12T16:26:41.4302071Z Receiving objects:  21% (586/2786)
2020-03-12T16:26:41.4317641Z Receiving objects:  22% (613/2786)
2020-03-12T16:26:41.4344640Z Receiving objects:  23% (641/2786)
2020-03-12T16:26:41.4353309Z Receiving objects:  24% (669/2786)
2020-03-12T16:26:41.4360460Z Receiving objects:  25% (697/2786)
2020-03-12T16:26:41.4373691Z Receiving objects:  26% (725/2786)
2020-03-12T16:26:41.4381785Z Receiving objects:  27% (753/2786)
2020-03-12T16:26:41.4405792Z Receiving objects:  28% (781/2786)
2020-03-12T16:26:41.4416429Z Receiving objects:  29% (808/2786)
2020-03-12T16:26:41.4429324Z Receiving objects:  30% (836/2786)
2020-03-12T16:26:41.4510513Z Receiving objects:  31% (864/2786)
2020-03-12T16:26:41.4547257Z Receiving objects:  32% (892/2786)
2020-03-12T16:26:41.4562576Z Receiving objects:  33% (920/2786)
2020-03-12T16:26:41.4568265Z Receiving objects:  34% (948/2786)
2020-03-12T16:26:41.4601900Z Receiving objects:  35% (976/2786)
2020-03-12T16:26:41.4624155Z Receiving objects:  36% (1003/2786)
2020-03-12T16:26:41.4632704Z Receiving objects:  37% (1031/2786)
2020-03-12T16:26:41.4651892Z Receiving objects:  38% (1059/2786)
2020-03-12T16:26:41.4669863Z Receiving objects:  39% (1087/2786)
2020-03-12T16:26:41.4682484Z Receiving objects:  40% (1115/2786)
2020-03-12T16:26:41.4708178Z Receiving objects:  41% (1143/2786)
2020-03-12T16:26:41.4724710Z Receiving objects:  42% (1171/2786)
2020-03-12T16:26:41.4743388Z Receiving objects:  43% (1198/2786)
2020-03-12T16:26:41.4753731Z Receiving objects:  44% (1226/2786)
2020-03-12T16:26:41.4819083Z Receiving objects:  45% (1254/2786)
2020-03-12T16:26:41.4853861Z Receiving objects:  46% (1282/2786)
2020-03-12T16:26:41.4897473Z Receiving objects:  47% (1310/2786)
2020-03-12T16:26:41.4939235Z Receiving objects:  48% (1338/2786)
2020-03-12T16:26:41.4967086Z Receiving objects:  49% (1366/2786)
2020-03-12T16:26:41.5011706Z Receiving objects:  50% (1393/2786)
2020-03-12T16:26:41.5026710Z Receiving objects:  51% (1421/2786)
2020-03-12T16:26:41.5046972Z Receiving objects:  52% (1449/2786)
2020-03-12T16:26:41.5060635Z Receiving objects:  53% (1477/2786)
2020-03-12T16:26:41.5069804Z Receiving objects:  54% (1505/2786)
2020-03-12T16:26:41.5077227Z Receiving objects:  55% (1533/2786)
2020-03-12T16:26:41.5083345Z Receiving objects:  56% (1561/2786)
2020-03-12T16:26:41.5090740Z Receiving objects:  57% (1589/2786)
2020-03-12T16:26:41.5109363Z Receiving objects:  58% (1616/2786)
2020-03-12T16:26:41.5120835Z Receiving objects:  59% (1644/2786)
2020-03-12T16:26:41.5134561Z Receiving objects:  60% (1672/2786)
2020-03-12T16:26:41.5145735Z Receiving objects:  61% (1700/2786)
2020-03-12T16:26:41.5160224Z Receiving objects:  62% (1728/2786)
2020-03-12T16:26:41.5183986Z Receiving objects:  63% (1756/2786)
2020-03-12T16:26:41.5198269Z Receiving objects:  64% (1784/2786)
2020-03-12T16:26:41.5209542Z Receiving objects:  65% (1811/2786)
2020-03-12T16:26:41.5224414Z Receiving objects:  66% (1839/2786)
2020-03-12T16:26:41.5231092Z Receiving objects:  67% (1867/2786)
2020-03-12T16:26:41.5240606Z Receiving objects:  68% (1895/2786)
2020-03-12T16:26:41.5250185Z Receiving objects:  69% (1923/2786)
2020-03-12T16:26:41.5265538Z Receiving objects:  70% (1951/2786)
2020-03-12T16:26:41.5310897Z Receiving objects:  71% (1979/2786)
2020-03-12T16:26:41.5328795Z Receiving objects:  72% (2006/2786)
2020-03-12T16:26:41.5351533Z Receiving objects:  73% (2034/2786)
2020-03-12T16:26:41.5394510Z Receiving objects:  74% (2062/2786)
2020-03-12T16:26:41.5521529Z Receiving objects:  75% (2090/2786)
2020-03-12T16:26:41.5572640Z Receiving objects:  76% (2118/2786)
2020-03-12T16:26:41.5586050Z Receiving objects:  77% (2146/2786)
2020-03-12T16:26:41.5593772Z Receiving objects:  78% (2174/2786)
2020-03-12T16:26:41.5596439Z Receiving objects:  79% (2201/2786)
2020-03-12T16:26:41.5606032Z Receiving objects:  80% (2229/2786)
2020-03-12T16:26:41.5692946Z Receiving objects:  81% (2257/2786)
2020-03-12T16:26:41.5853587Z Receiving objects:  82% (2285/2786)
2020-03-12T16:26:41.6286508Z Receiving objects:  83% (2313/2786)
2020-03-12T16:26:41.6388853Z Receiving objects:  84% (2341/2786)
2020-03-12T16:26:41.6490351Z Receiving objects:  85% (2369/2786)
2020-03-12T16:26:41.6592236Z Receiving objects:  86% (2396/2786)
2020-03-12T16:26:41.6794846Z Receiving objects:  87% (2424/2786)
2020-03-12T16:26:41.7156889Z Receiving objects:  88% (2452/2786)
2020-03-12T16:26:41.7183350Z Receiving objects:  89% (2480/2786)
2020-03-12T16:26:41.7320262Z Receiving objects:  90% (2508/2786)
2020-03-12T16:26:41.7347603Z Receiving objects:  91% (2536/2786)
2020-03-12T16:26:41.7379398Z Receiving objects:  92% (2564/2786)
2020-03-12T16:26:41.7397659Z Receiving objects:  93% (2591/2786)
2020-03-12T16:26:41.7418742Z Receiving objects:  94% (2619/2786)
2020-03-12T16:26:41.7429116Z Receiving objects:  95% (2647/2786)
2020-03-12T16:26:41.7449518Z Receiving objects:  96% (2675/2786)
2020-03-12T16:26:41.7512049Z Receiving objects:  97% (2703/2786)
2020-03-12T16:26:41.7566012Z Receiving objects:  98% (2731/2786)
2020-03-12T16:26:41.7568407Z Receiving objects:  99% (2759/2786)
2020-03-12T16:26:41.7569500Z remote: Total 2786 (delta 278), reused 1441 (delta 169), pack-reused 0        
2020-03-12T16:26:41.7572871Z Receiving objects: 100% (2786/2786)
2020-03-12T16:26:41.7573093Z Receiving objects: 100% (2786/2786), 5.07 MiB | 11.79 MiB/s, done.
2020-03-12T16:26:41.7608859Z Resolving deltas:   0% (0/278)
2020-03-12T16:26:41.7610580Z Resolving deltas:   1% (3/278)
2020-03-12T16:26:41.7613085Z Resolving deltas:   2% (6/278)
2020-03-12T16:26:41.7615489Z Resolving deltas:   3% (9/278)
2020-03-12T16:26:41.7617424Z Resolving deltas:   5% (15/278)
2020-03-12T16:26:41.7619679Z Resolving deltas:   6% (17/278)
2020-03-12T16:26:41.7621733Z Resolving deltas:   7% (20/278)
2020-03-12T16:26:41.7622171Z Resolving deltas:   8% (25/278)
2020-03-12T16:26:41.7625051Z Resolving deltas:   9% (26/278)
2020-03-12T16:26:41.7626423Z Resolving deltas:  10% (29/278)
2020-03-12T16:26:41.7627826Z Resolving deltas:  11% (31/278)
2020-03-12T16:26:41.7629800Z Resolving deltas:  12% (34/278)
2020-03-12T16:26:41.7631334Z Resolving deltas:  14% (39/278)
2020-03-12T16:26:41.7632531Z Resolving deltas:  16% (46/278)
2020-03-12T16:26:41.7633304Z Resolving deltas:  17% (50/278)
2020-03-12T16:26:41.7634403Z Resolving deltas:  18% (51/278)
2020-03-12T16:26:41.7636941Z Resolving deltas:  19% (53/278)
2020-03-12T16:26:41.7639197Z Resolving deltas:  23% (64/278)
2020-03-12T16:26:41.7639661Z Resolving deltas:  24% (69/278)
2020-03-12T16:26:41.7642049Z Resolving deltas:  25% (70/278)
2020-03-12T16:26:41.7643796Z Resolving deltas:  26% (73/278)
2020-03-12T16:26:41.7644315Z Resolving deltas:  27% (77/278)
2020-03-12T16:26:41.7645911Z Resolving deltas:  28% (78/278)
2020-03-12T16:26:41.7646823Z Resolving deltas:  29% (81/278)
2020-03-12T16:26:41.7648970Z Resolving deltas:  30% (84/278)
2020-03-12T16:26:41.7650511Z Resolving deltas:  31% (87/278)
2020-03-12T16:26:41.7652440Z Resolving deltas:  32% (90/278)
2020-03-12T16:26:41.7653129Z Resolving deltas:  33% (92/278)
2020-03-12T16:26:41.7654863Z Resolving deltas:  34% (95/278)
2020-03-12T16:26:41.7656867Z Resolving deltas:  35% (98/278)
2020-03-12T16:26:41.7658725Z Resolving deltas:  36% (101/278)
2020-03-12T16:26:41.7660521Z Resolving deltas:  37% (103/278)
2020-03-12T16:26:41.7661651Z Resolving deltas:  38% (106/278)
2020-03-12T16:26:41.7663535Z Resolving deltas:  39% (109/278)
2020-03-12T16:26:41.7665117Z Resolving deltas:  40% (112/278)
2020-03-12T16:26:41.7666878Z Resolving deltas:  41% (114/278)
2020-03-12T16:26:41.7668372Z Resolving deltas:  42% (117/278)
2020-03-12T16:26:41.7670314Z Resolving deltas:  43% (120/278)
2020-03-12T16:26:41.7671022Z Resolving deltas:  44% (125/278)
2020-03-12T16:26:41.7672735Z Resolving deltas:  45% (126/278)
2020-03-12T16:26:41.7673602Z Resolving deltas:  46% (129/278)
2020-03-12T16:26:41.7675307Z Resolving deltas:  47% (132/278)
2020-03-12T16:26:41.7676754Z Resolving deltas:  48% (134/278)
2020-03-12T16:26:41.7678292Z Resolving deltas:  49% (137/278)
2020-03-12T16:26:41.7681471Z Resolving deltas:  50% (139/278)
2020-03-12T16:26:41.7683402Z Resolving deltas:  55% (153/278)
2020-03-12T16:26:41.7685063Z Resolving deltas:  56% (157/278)
2020-03-12T16:26:41.7685752Z Resolving deltas:  58% (164/278)
2020-03-12T16:26:41.7686782Z Resolving deltas:  59% (165/278)
2020-03-12T16:26:41.7687636Z Resolving deltas:  60% (167/278)
2020-03-12T16:26:41.7689039Z Resolving deltas:  61% (170/278)
2020-03-12T16:26:41.7689922Z Resolving deltas:  62% (174/278)
2020-03-12T16:26:41.7690891Z Resolving deltas:  63% (177/278)
2020-03-12T16:26:41.7729468Z Resolving deltas:  64% (180/278)
2020-03-12T16:26:41.7732371Z Resolving deltas:  70% (196/278)
2020-03-12T16:26:41.7758335Z Resolving deltas:  71% (198/278)
2020-03-12T16:26:41.7796598Z Resolving deltas:  74% (206/278)
2020-03-12T16:26:41.7802370Z Resolving deltas:  79% (221/278)
2020-03-12T16:26:41.7809587Z Resolving deltas:  80% (224/278)
2020-03-12T16:26:41.7812190Z Resolving deltas:  81% (227/278)
2020-03-12T16:26:41.7820696Z Resolving deltas:  82% (229/278)
2020-03-12T16:26:41.7823988Z Resolving deltas:  84% (235/278)
2020-03-12T16:26:41.7832295Z Resolving deltas:  85% (237/278)
2020-03-12T16:26:41.7835139Z Resolving deltas:  86% (241/278)
2020-03-12T16:26:41.7838847Z Resolving deltas:  87% (242/278)
2020-03-12T16:26:41.7846712Z Resolving deltas:  88% (245/278)
2020-03-12T16:26:41.7849288Z Resolving deltas:  89% (248/278)
2020-03-12T16:26:41.7851635Z Resolving deltas:  90% (251/278)
2020-03-12T16:26:41.7853233Z Resolving deltas:  91% (254/278)
2020-03-12T16:26:41.7855801Z Resolving deltas:  92% (256/278)
2020-03-12T16:26:41.7864874Z Resolving deltas:  93% (259/278)
2020-03-12T16:26:41.7882152Z Resolving deltas:  94% (262/278)
2020-03-12T16:26:41.7886437Z Resolving deltas:  95% (266/278)
2020-03-12T16:26:41.7890515Z Resolving deltas:  96% (267/278)
2020-03-12T16:26:41.7892195Z Resolving deltas:  97% (272/278)
2020-03-12T16:26:41.7893975Z Resolving deltas:  98% (273/278)
2020-03-12T16:26:41.7932497Z Resolving deltas:  99% (276/278)
2020-03-12T16:26:41.7932962Z Resolving deltas: 100% (278/278)
2020-03-12T16:26:41.7933288Z Resolving deltas: 100% (278/278), done.
2020-03-12T16:26:41.8463664Z From https://github.com/terraformtesting/terraform-provider-github
2020-03-12T16:26:41.8464162Z  * branch            531534aaa6bbe4a51f1b79ca03c0637cbae2e40c -> FETCH_HEAD
2020-03-12T16:26:41.8490817Z [command]/usr/bin/git checkout --progress --force 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:42.0411057Z Note: switching to '531534aaa6bbe4a51f1b79ca03c0637cbae2e40c'.
2020-03-12T16:26:42.0411409Z 
2020-03-12T16:26:42.0412032Z You are in 'detached HEAD' state. You can look around, make experimental
2020-03-12T16:26:42.0412355Z changes and commit them, and you can discard any commits you make in this
2020-03-12T16:26:42.0412654Z state without impacting any branches by switching back to a branch.
2020-03-12T16:26:42.0412812Z 
2020-03-12T16:26:42.0413067Z If you want to create a new branch to retain commits you create, you may
2020-03-12T16:26:42.0413669Z do so (now or later) by using -c with the switch command. Example:
2020-03-12T16:26:42.0413844Z 
2020-03-12T16:26:42.0414312Z   git switch -c <new-branch-name>
2020-03-12T16:26:42.0414452Z 
2020-03-12T16:26:42.0414677Z Or undo this operation with:
2020-03-12T16:26:42.0415118Z 
2020-03-12T16:26:42.0415591Z   git switch -
2020-03-12T16:26:42.0415738Z 
2020-03-12T16:26:42.0415991Z Turn off this advice by setting config variable advice.detachedHead to false
2020-03-12T16:26:42.0416154Z 
2020-03-12T16:26:42.0416395Z HEAD is now at 531534a Remove unneeded TLS dependency
2020-03-12T16:26:42.0416888Z [command]/usr/bin/git log -1
2020-03-12T16:26:42.0459050Z commit 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:42.0481800Z Author: Ben F <benj-fletch@users.noreply.github.com>
2020-03-12T16:26:42.0482011Z Date:   Fri Mar 6 09:18:52 2020 +0000
2020-03-12T16:26:42.0487996Z 
2020-03-12T16:26:42.0489705Z     Remove unneeded TLS dependency
2020-03-12T16:26:42.0495248Z Removed matchers: 'checkout-git'
2020-03-12T16:26:42.0630777Z ##[group]Run openssl req -x509 -newkey rsa:4096 -days 1 -nodes \
2020-03-12T16:26:42.0631024Z �[36;1mopenssl req -x509 -newkey rsa:4096 -days 1 -nodes \�[0m
2020-03-12T16:26:42.0631177Z �[36;1m  -subj "/C=US/ST=CA/L=San Francisco/O=HashiCorp, Inc./CN=localhost" \�[0m
2020-03-12T16:26:42.0631350Z �[36;1m  -keyout github/test-fixtures/key.pem -out github/test-fixtures/cert.pem�[0m
2020-03-12T16:26:42.0665364Z shell: /bin/bash -e {0}
2020-03-12T16:26:42.0665502Z env:
2020-03-12T16:26:42.0665633Z   HEAD_SHA: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:42.0665777Z   LABEL_NAME: acceptance-test/TestAccGithubTeam
2020-03-12T16:26:42.0665908Z   RUN_FILTER: TestAccGithubTeam
2020-03-12T16:26:42.0666033Z ##[endgroup]
2020-03-12T16:26:42.0748947Z Generating a RSA private key
2020-03-12T16:26:42.4996218Z ...............................................................................................++++
2020-03-12T16:26:42.8630174Z ...................................................................................++++
2020-03-12T16:26:42.8635743Z writing new private key to 'github/test-fixtures/key.pem'
2020-03-12T16:26:42.8636031Z -----
2020-03-12T16:26:42.8855767Z ##[group]Run terraformtesting/acceptance-tests@v1.2.0
2020-03-12T16:26:42.8855931Z with:
2020-03-12T16:26:42.8856055Z   RUN_FILTER: TestAccGithubTeam
2020-03-12T16:26:42.8856185Z   GITHUB_ORGANIZATION: terraformtesting
2020-03-12T16:26:42.8856315Z   GITHUB_TEST_USER: github-terraform-test-user
2020-03-12T16:26:42.8856444Z   GITHUB_TEST_USER_NAME: Test User
2020-03-12T16:26:42.8856589Z   GITHUB_TEST_USER_EMAIL: 60107403+github-terraform-test-user@users.noreply.github.com
2020-03-12T16:26:42.8857135Z   GITHUB_TEST_USER_TOKEN: ***
2020-03-12T16:26:42.8857274Z   GITHUB_TEST_COLLABORATOR: github-terraform-test-collaborator
2020-03-12T16:26:42.8857439Z   GITHUB_TEST_COLLABORATOR_TOKEN: ***
2020-03-12T16:26:42.8857576Z   GITHUB_TEMPLATE_REPOSITORY: terraform-template-module
2020-03-12T16:26:42.8857714Z   GITHUB_TEMPLATE_REPOSITORY_RELEASE_ID: 23826477
2020-03-12T16:26:42.8857846Z env:
2020-03-12T16:26:42.8857968Z   HEAD_SHA: 531534aaa6bbe4a51f1b79ca03c0637cbae2e40c
2020-03-12T16:26:42.8858122Z   LABEL_NAME: acceptance-test/TestAccGithubTeam
2020-03-12T16:26:42.8858257Z   RUN_FILTER: TestAccGithubTeam
2020-03-12T16:26:42.8858380Z ##[endgroup]
2020-03-12T16:26:42.8884531Z ##[command]/usr/bin/docker run --name e87b52ceb625fd9d2044f39edb1d8bcaee461d_f176bf --label e87b52 --workdir /github/workspace --rm -e HEAD_SHA -e LABEL_NAME -e RUN_FILTER -e INPUT_RUN_FILTER -e INPUT_GITHUB_ORGANIZATION -e INPUT_GITHUB_TEST_USER -e INPUT_GITHUB_TEST_USER_NAME -e INPUT_GITHUB_TEST_USER_EMAIL -e INPUT_GITHUB_TEST_USER_TOKEN -e INPUT_GITHUB_TEST_COLLABORATOR -e INPUT_GITHUB_TEST_COLLABORATOR_TOKEN -e INPUT_GITHUB_TEMPLATE_REPOSITORY -e INPUT_GITHUB_TEMPLATE_REPOSITORY_RELEASE_ID -e HOME -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e RUNNER_OS -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/terraform-provider-github/terraform-provider-github":"/github/workspace" e87b52:ceb625fd9d2044f39edb1d8bcaee461d
2020-03-12T16:26:43.7618212Z go mod init: go.mod already exists
2020-03-12T16:26:44.1507782Z go: downloading github.com/hashicorp/terraform-plugin-sdk v1.7.0
2020-03-12T16:26:44.1608593Z go: downloading github.com/google/go-github/v29 v29.0.3
2020-03-12T16:26:44.1719654Z go: downloading golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
2020-03-12T16:26:44.1890628Z go: downloading github.com/kylelemons/godebug v1.1.0
2020-03-12T16:26:44.2185698Z go: extracting github.com/kylelemons/godebug v1.1.0
2020-03-12T16:26:44.2420959Z go: extracting golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
2020-03-12T16:26:44.2593562Z go: extracting github.com/google/go-github/v29 v29.0.3
2020-03-12T16:26:44.2600971Z go: downloading google.golang.org/appengine v1.6.1
2020-03-12T16:26:44.2610469Z go: downloading golang.org/x/net v0.0.0-20191009170851-d66e71096ffb
2020-03-12T16:26:44.3464624Z go: downloading github.com/google/go-querystring v1.0.0
2020-03-12T16:26:44.3984530Z go: extracting google.golang.org/appengine v1.6.1
2020-03-12T16:26:44.4505879Z go: extracting github.com/google/go-querystring v1.0.0
2020-03-12T16:26:44.4506265Z go: downloading golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
2020-03-12T16:26:44.4903930Z go: extracting github.com/hashicorp/terraform-plugin-sdk v1.7.0
2020-03-12T16:26:44.5309784Z go: extracting golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
2020-03-12T16:26:44.5610206Z go: extracting golang.org/x/net v0.0.0-20191009170851-d66e71096ffb
2020-03-12T16:26:44.6714974Z go: downloading github.com/golang/protobuf v1.3.2
2020-03-12T16:26:44.7852058Z go: extracting github.com/golang/protobuf v1.3.2
2020-03-12T16:26:44.8238938Z go: downloading google.golang.org/grpc v1.23.0
2020-03-12T16:26:44.8257184Z go: downloading github.com/zclconf/go-cty v1.2.1
2020-03-12T16:26:44.8292255Z go: downloading github.com/hashicorp/errwrap v1.0.0
2020-03-12T16:26:44.8305361Z go: downloading github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f
2020-03-12T16:26:44.8316930Z go: downloading github.com/apparentlymart/go-cidr v1.0.1
2020-03-12T16:26:44.8331210Z go: downloading github.com/go-test/deep v1.0.3
2020-03-12T16:26:44.8465435Z go: extracting github.com/hashicorp/errwrap v1.0.0
2020-03-12T16:26:44.8576773Z go: extracting github.com/zclconf/go-cty v1.2.1
2020-03-12T16:26:44.8643700Z go: extracting github.com/go-test/deep v1.0.3
2020-03-12T16:26:44.8653161Z go: extracting github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f
2020-03-12T16:26:44.8694131Z go: extracting github.com/apparentlymart/go-cidr v1.0.1
2020-03-12T16:26:44.8763106Z go: downloading github.com/agext/levenshtein v1.2.2
2020-03-12T16:26:44.8779385Z go: downloading github.com/hashicorp/go-hclog v0.9.2
2020-03-12T16:26:44.8843693Z go: downloading github.com/hashicorp/terraform-plugin-test v1.2.0
2020-03-12T16:26:44.8869872Z go: downloading github.com/google/go-cmp v0.3.1
2020-03-12T16:26:44.8875745Z go: downloading github.com/davecgh/go-spew v1.1.1
2020-03-12T16:26:44.8937444Z go: extracting github.com/hashicorp/go-hclog v0.9.2
2020-03-12T16:26:44.8950125Z go: downloading github.com/hashicorp/terraform-svchost v0.0.0-20191011084731-65d371908596
2020-03-12T16:26:44.8974550Z go: extracting github.com/agext/levenshtein v1.2.2
2020-03-12T16:26:44.9030410Z go: downloading github.com/hashicorp/go-version v1.2.0
2020-03-12T16:26:44.9131177Z go: extracting github.com/hashicorp/terraform-svchost v0.0.0-20191011084731-65d371908596
2020-03-12T16:26:44.9256575Z go: extracting github.com/hashicorp/terraform-plugin-test v1.2.0
2020-03-12T16:26:44.9266529Z go: downloading github.com/hashicorp/hcl/v2 v2.0.0
2020-03-12T16:26:44.9314451Z go: extracting github.com/google/go-cmp v0.3.1
2020-03-12T16:26:44.9343475Z go: downloading github.com/hashicorp/go-multierror v1.0.0
2020-03-12T16:26:44.9627594Z go: extracting github.com/hashicorp/go-version v1.2.0
2020-03-12T16:26:44.9682994Z go: downloading github.com/hashicorp/go-getter v1.4.0
2020-03-12T16:26:44.9710216Z go: extracting github.com/davecgh/go-spew v1.1.1
2020-03-12T16:26:44.9855541Z go: downloading github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
2020-03-12T16:26:44.9883363Z go: extracting github.com/hashicorp/go-multierror v1.0.0
2020-03-12T16:26:44.9907221Z go: downloading github.com/hashicorp/terraform-json v0.4.0
2020-03-12T16:26:44.9911658Z go: extracting github.com/hashicorp/go-getter v1.4.0
2020-03-12T16:26:45.0040495Z go: extracting github.com/hashicorp/hcl/v2 v2.0.0
2020-03-12T16:26:45.0057521Z go: extracting github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
2020-03-12T16:26:45.0209144Z go: extracting google.golang.org/grpc v1.23.0
2020-03-12T16:26:45.0306262Z go: extracting github.com/hashicorp/terraform-json v0.4.0
2020-03-12T16:26:45.0317028Z go: downloading github.com/mitchellh/go-testing-interface v1.0.0
2020-03-12T16:26:45.0496909Z go: downloading github.com/golang/mock v1.3.1
2020-03-12T16:26:45.0626374Z go: extracting github.com/mitchellh/go-testing-interface v1.0.0
2020-03-12T16:26:45.0637658Z go: downloading github.com/aws/aws-sdk-go v1.25.3
2020-03-12T16:26:45.0882861Z go: extracting github.com/golang/mock v1.3.1
2020-03-12T16:26:45.1035104Z go: downloading github.com/mitchellh/reflectwalk v1.0.1
2020-03-12T16:26:45.1198837Z go: downloading github.com/hashicorp/go-uuid v1.0.1
2020-03-12T16:26:45.1238998Z go: downloading golang.org/x/text v0.3.2
2020-03-12T16:26:45.1243930Z go: downloading github.com/hashicorp/logutils v1.0.0
2020-03-12T16:26:45.1249345Z go: downloading github.com/hashicorp/go-plugin v1.0.1
2020-03-12T16:26:45.1266184Z go: extracting github.com/mitchellh/reflectwalk v1.0.1
2020-03-12T16:26:45.1279979Z go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
2020-03-12T16:26:45.1309713Z go: extracting github.com/hashicorp/go-uuid v1.0.1
2020-03-12T16:26:45.1332167Z go: downloading github.com/vmihailenco/msgpack v4.0.1+incompatible
2020-03-12T16:26:45.1600701Z go: downloading github.com/apparentlymart/go-textseg v1.0.0
2020-03-12T16:26:45.1610983Z go: downloading github.com/mitchellh/go-homedir v1.1.0
2020-03-12T16:26:45.1642011Z go: downloading github.com/mitchellh/mapstructure v1.1.2
2020-03-12T16:26:45.1683004Z go: extracting github.com/hashicorp/logutils v1.0.0
2020-03-12T16:26:45.1706273Z go: extracting github.com/vmihailenco/msgpack v4.0.1+incompatible
2020-03-12T16:26:45.1768044Z go: extracting github.com/hashicorp/go-plugin v1.0.1
2020-03-12T16:26:45.1784008Z go: extracting github.com/mitchellh/mapstructure v1.1.2
2020-03-12T16:26:45.1806849Z go: downloading github.com/spf13/afero v1.2.2
2020-03-12T16:26:45.1832814Z go: downloading github.com/kr/pretty v0.1.0
2020-03-12T16:26:45.1867806Z go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
2020-03-12T16:26:45.1872538Z go: extracting github.com/mitchellh/go-homedir v1.1.0
2020-03-12T16:26:45.1883177Z go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
2020-03-12T16:26:45.1899747Z go: downloading golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
2020-03-12T16:26:45.2004470Z go: extracting github.com/kr/pretty v0.1.0
2020-03-12T16:26:45.2051100Z go: extracting github.com/spf13/afero v1.2.2
2020-03-12T16:26:45.2067055Z go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
2020-03-12T16:26:45.2079933Z go: downloading github.com/apparentlymart/go-dump v0.0.0-20190214190832-042adf3cf4a0
2020-03-12T16:26:45.2091271Z go: downloading github.com/kr/text v0.1.0
2020-03-12T16:26:45.2929644Z go: extracting github.com/kr/text v0.1.0
2020-03-12T16:26:45.2954905Z go: downloading google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55
2020-03-12T16:26:45.3301366Z go: extracting github.com/apparentlymart/go-dump v0.0.0-20190214190832-042adf3cf4a0
2020-03-12T16:26:45.3383845Z go: extracting github.com/apparentlymart/go-textseg v1.0.0
2020-03-12T16:26:45.6390280Z go: extracting golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
2020-03-12T16:26:45.7193729Z go: extracting golang.org/x/text v0.3.2
2020-03-12T16:26:45.8814471Z go: downloading google.golang.org/api v0.9.0
2020-03-12T16:26:46.3414643Z go: downloading github.com/hashicorp/go-safetemp v1.0.0
2020-03-12T16:26:46.3547556Z go: extracting google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55
2020-03-12T16:26:46.3853179Z go: extracting github.com/hashicorp/go-safetemp v1.0.0
2020-03-12T16:26:46.3874798Z go: downloading github.com/oklog/run v1.0.0
2020-03-12T16:26:46.4059060Z go: extracting github.com/oklog/run v1.0.0
2020-03-12T16:26:46.4071419Z go: downloading cloud.google.com/go v0.45.1
2020-03-12T16:26:46.7493355Z go: extracting cloud.google.com/go v0.45.1
2020-03-12T16:26:47.1205467Z go: downloading github.com/mitchellh/copystructure v1.0.0
2020-03-12T16:26:47.1212157Z go: downloading github.com/mitchellh/go-wordwrap v1.0.0
2020-03-12T16:26:47.1353480Z go: extracting github.com/mitchellh/go-wordwrap v1.0.0
2020-03-12T16:26:47.1364937Z go: downloading github.com/ulikunitz/xz v0.5.5
2020-03-12T16:26:47.1408308Z go: extracting github.com/mitchellh/copystructure v1.0.0
2020-03-12T16:26:47.1953113Z go: extracting github.com/ulikunitz/xz v0.5.5
2020-03-12T16:26:47.2520779Z go: extracting github.com/aws/aws-sdk-go v1.25.3
2020-03-12T16:26:47.7383061Z go: extracting google.golang.org/api v0.9.0
2020-03-12T16:26:48.0721164Z go: downloading github.com/mitchellh/cli v1.0.0
2020-03-12T16:26:48.0743459Z go: downloading gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
2020-03-12T16:26:48.0753519Z go: downloading github.com/stretchr/testify v1.3.0
2020-03-12T16:26:48.0790338Z go: downloading go.opencensus.io v0.22.0
2020-03-12T16:26:48.0805107Z go: downloading github.com/google/uuid v1.1.1
2020-03-12T16:26:48.0859756Z go: extracting github.com/mitchellh/cli v1.0.0
2020-03-12T16:26:48.0893030Z go: downloading github.com/mattn/go-isatty v0.0.5
2020-03-12T16:26:48.0900709Z go: downloading github.com/posener/complete v1.2.1
2020-03-12T16:26:48.1079703Z go: extracting github.com/posener/complete v1.2.1
2020-03-12T16:26:48.1305675Z go: extracting gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
2020-03-12T16:26:48.1366201Z go: extracting github.com/mattn/go-isatty v0.0.5
2020-03-12T16:26:48.1415288Z go: downloading github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d
2020-03-12T16:26:48.1490695Z go: extracting go.opencensus.io v0.22.0
2020-03-12T16:26:48.1537917Z go: extracting github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d
2020-03-12T16:26:48.1613366Z go: extracting github.com/google/uuid v1.1.1
2020-03-12T16:26:48.1646106Z go: downloading github.com/googleapis/gax-go/v2 v2.0.5
2020-03-12T16:26:48.1664764Z go: extracting github.com/stretchr/testify v1.3.0
2020-03-12T16:26:48.1814733Z go: downloading github.com/fatih/color v1.7.0
2020-03-12T16:26:48.1855777Z go: downloading github.com/bgentry/speakeasy v0.1.0
2020-03-12T16:26:48.1893293Z go: extracting github.com/googleapis/gax-go/v2 v2.0.5
2020-03-12T16:26:48.1943105Z go: downloading github.com/hashicorp/go-cleanhttp v0.5.1
2020-03-12T16:26:48.2029708Z go: downloading github.com/google/martian v2.1.0+incompatible
2020-03-12T16:26:48.2063005Z go: extracting github.com/hashicorp/go-cleanhttp v0.5.1
2020-03-12T16:26:48.2124420Z go: downloading github.com/sergi/go-diff v1.0.0
2020-03-12T16:26:48.2337986Z go: extracting github.com/fatih/color v1.7.0
2020-03-12T16:26:48.2414037Z go: extracting github.com/sergi/go-diff v1.0.0
2020-03-12T16:26:48.2425521Z go: extracting github.com/bgentry/speakeasy v0.1.0
2020-03-12T16:26:48.2448981Z go: downloading github.com/mattn/go-colorable v0.1.1
2020-03-12T16:26:48.2665112Z go: extracting github.com/google/martian v2.1.0+incompatible
2020-03-12T16:26:48.2773569Z go: extracting github.com/mattn/go-colorable v0.1.1
2020-03-12T16:26:48.2795582Z go: downloading github.com/hashicorp/terraform-config-inspect v0.0.0-20191115094559-17f92b0546e8
2020-03-12T16:26:48.3027796Z go: extracting github.com/hashicorp/terraform-config-inspect v0.0.0-20191115094559-17f92b0546e8
2020-03-12T16:26:48.3045373Z go: downloading github.com/zclconf/go-cty-yaml v1.0.1
2020-03-12T16:26:48.3089058Z go: downloading github.com/pmezard/go-difflib v1.0.0
2020-03-12T16:26:48.3123350Z go: downloading github.com/hashicorp/golang-lru v0.5.1
2020-03-12T16:26:48.3181397Z go: downloading github.com/armon/go-radix v1.0.0
2020-03-12T16:26:48.3196614Z go: extracting github.com/zclconf/go-cty-yaml v1.0.1
2020-03-12T16:26:48.3259390Z go: downloading github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
2020-03-12T16:26:48.3292645Z go: extracting github.com/armon/go-radix v1.0.0
2020-03-12T16:26:48.3304459Z go: extracting github.com/pmezard/go-difflib v1.0.0
2020-03-12T16:26:48.3421783Z go: extracting github.com/hashicorp/golang-lru v0.5.1
2020-03-12T16:26:48.3743436Z go: extracting github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
2020-03-12T16:26:49.0632253Z go: finding github.com/hashicorp/terraform-plugin-sdk v1.7.0
2020-03-12T16:26:49.0910719Z go: finding github.com/google/go-github/v29 v29.0.3
2020-03-12T16:26:49.2024854Z go: finding github.com/hashicorp/go-hclog v0.9.2
2020-03-12T16:26:49.2171520Z go: finding github.com/hashicorp/go-plugin v1.0.1
2020-03-12T16:26:49.2184521Z go: finding github.com/hashicorp/logutils v1.0.0
2020-03-12T16:26:49.2265027Z go: finding golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
2020-03-12T16:26:49.2292568Z go: finding github.com/hashicorp/go-uuid v1.0.1
2020-03-12T16:26:49.2372728Z go: finding github.com/hashicorp/go-multierror v1.0.0
2020-03-12T16:26:49.2505639Z go: finding github.com/hashicorp/hcl/v2 v2.0.0
2020-03-12T16:26:49.2552825Z go: finding github.com/golang/protobuf v1.3.2
2020-03-12T16:26:49.2590210Z go: finding github.com/hashicorp/errwrap v1.0.0
2020-03-12T16:26:49.2673198Z go: finding github.com/google/go-querystring v1.0.0
2020-03-12T16:26:49.2686646Z go: finding github.com/agext/levenshtein v1.2.2
2020-03-12T16:26:49.2692501Z go: finding golang.org/x/net v0.0.0-20191009170851-d66e71096ffb
2020-03-12T16:26:49.2769308Z go: finding golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
2020-03-12T16:26:49.2795128Z go: finding google.golang.org/grpc v1.23.0
2020-03-12T16:26:49.2799575Z go: finding github.com/zclconf/go-cty v1.2.1
2020-03-12T16:26:49.2912525Z go: finding github.com/mitchellh/copystructure v1.0.0
2020-03-12T16:26:49.2970343Z go: finding github.com/hashicorp/go-getter v1.4.0
2020-03-12T16:26:49.3008081Z go: finding github.com/apparentlymart/go-textseg v1.0.0
2020-03-12T16:26:49.3046786Z go: finding github.com/mitchellh/mapstructure v1.1.2
2020-03-12T16:26:49.3145762Z go: finding google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55
2020-03-12T16:26:49.3152333Z go: finding github.com/hashicorp/go-version v1.2.0
2020-03-12T16:26:49.3238839Z go: finding github.com/mitchellh/reflectwalk v1.0.1
2020-03-12T16:26:49.3245152Z go: finding github.com/mitchellh/go-wordwrap v1.0.0
2020-03-12T16:26:49.3327021Z go: finding github.com/vmihailenco/msgpack v4.0.1+incompatible
2020-03-12T16:26:49.3462459Z go: finding cloud.google.com/go v0.45.1
2020-03-12T16:26:49.3488935Z go: finding golang.org/x/text v0.3.2
2020-03-12T16:26:49.3557115Z go: finding github.com/hashicorp/go-cleanhttp v0.5.1
2020-03-12T16:26:49.3626292Z go: finding github.com/hashicorp/terraform-svchost v0.0.0-20191011084731-65d371908596
2020-03-12T16:26:49.3659250Z go: finding github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d
2020-03-12T16:26:49.3723436Z go: finding github.com/mitchellh/go-testing-interface v1.0.0
2020-03-12T16:26:49.3752072Z go: finding github.com/googleapis/gax-go/v2 v2.0.5
2020-03-12T16:26:49.3805600Z go: finding github.com/mitchellh/cli v1.0.0
2020-03-12T16:26:49.3830610Z go: finding github.com/oklog/run v1.0.0
2020-03-12T16:26:49.3939032Z go: finding google.golang.org/api v0.9.0
2020-03-12T16:26:49.4029488Z go: finding go.opencensus.io v0.22.0
2020-03-12T16:26:49.4159585Z go: finding golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
2020-03-12T16:26:49.4219119Z go: finding github.com/spf13/afero v1.2.2
2020-03-12T16:26:49.4250916Z go: finding github.com/armon/go-radix v1.0.0
2020-03-12T16:26:49.4302049Z go: finding github.com/bgentry/speakeasy v0.1.0
2020-03-12T16:26:49.4332541Z go: finding github.com/aws/aws-sdk-go v1.25.3
2020-03-12T16:26:49.4371237Z go: finding github.com/fatih/color v1.7.0
2020-03-12T16:26:49.4419982Z go: finding github.com/google/go-cmp v0.3.1
2020-03-12T16:26:49.4470924Z go: finding github.com/mattn/go-isatty v0.0.5
2020-03-12T16:26:49.4546571Z go: finding github.com/apparentlymart/go-cidr v1.0.1
2020-03-12T16:26:49.4552964Z go: finding github.com/posener/complete v1.2.1
2020-03-12T16:26:49.4572643Z go: finding github.com/hashicorp/golang-lru v0.5.1
2020-03-12T16:26:49.4629284Z go: finding github.com/mattn/go-colorable v0.1.1
2020-03-12T16:26:49.4660777Z go: finding github.com/google/uuid v1.1.1
2020-03-12T16:26:49.4676569Z go: finding github.com/zclconf/go-cty-yaml v1.0.1
2020-03-12T16:26:49.4735291Z go: finding github.com/mitchellh/go-homedir v1.1.0
2020-03-12T16:26:49.4775722Z go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
2020-03-12T16:26:49.4806965Z go: finding github.com/hashicorp/go-safetemp v1.0.0
2020-03-12T16:26:49.4949213Z go: finding github.com/ulikunitz/xz v0.5.5
2020-03-12T16:26:49.5017589Z go: finding github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
2020-03-12T16:27:18.6906727Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:27:19.5754954Z Skipping test TestAccGithubBranchProtection_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5755215Z Skipping test TestAccGithubBranchProtection_users as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5756526Z Skipping test TestAccGithubBranchProtection_teams as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5757957Z Skipping test TestAccGithubBranchProtection_emptyItems as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5759343Z Skipping test TestAccGithubOrganizationProject_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5759532Z Skipping test TestAccGithubRepositoryFile_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5759885Z Skipping test TestAccGithubRepositoryFile_branch as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5760065Z Skipping test TestAccGithubRepositoryFile_committer as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5760236Z Skipping test TestAccGithubProjectColumn_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5760401Z Skipping test TestAccGithubOrganizationWebhook_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5760582Z Skipping test TestAccGithubOrganizationWebhook_secret as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5761358Z Skipping test TestAccValidateTeamIDFunc as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5761535Z Skipping test TestAccGithubUtilRole_validation as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5761704Z Skipping test TestAccGithubUtilTwoPartID as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5761867Z Skipping test TestAccGithubIssueLabel_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5762034Z Skipping test TestAccGithubIssueLabel_existingLabel as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5762204Z Skipping test TestAccGithubIssueLabel_description as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5762373Z Skipping test TestAccGithubCollaboratorsDataSource_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5762548Z Skipping test TestAccGithubRepositoriesDataSource_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5762840Z Skipping test TestAccGithubRepositoriesDataSource_Sort as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.5763011Z Skipping test TestAccGithubRepositoriesDataSource_noMatch as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:19.9301765Z go: finding github.com/kylelemons/godebug v1.1.0
2020-03-12T16:27:19.9310794Z go: finding github.com/davecgh/go-spew v1.1.1
2020-03-12T16:27:20.5875770Z go: finding github.com/hashicorp/terraform-json v0.4.0
2020-03-12T16:27:20.5879189Z go: finding github.com/hashicorp/terraform-plugin-test v1.2.0
2020-03-12T16:27:20.5989679Z go: finding github.com/hashicorp/terraform-config-inspect v0.0.0-20191115094559-17f92b0546e8
2020-03-12T16:27:20.5990128Z go: finding github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
2020-03-12T16:27:20.6068368Z go: finding github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f
2020-03-12T16:27:20.9791825Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:27:40.4203781Z === RUN   TestAccGithubTeamMembership_basic
2020-03-12T16:27:40.4204449Z === PAUSE TestAccGithubTeamMembership_basic
2020-03-12T16:27:40.4204782Z === CONT  TestAccGithubTeamMembership_basic
2020-03-12T16:27:40.4205703Z --- PASS: TestAccGithubTeamMembership_basic (13.88s)
2020-03-12T16:27:40.4206055Z PASS
2020-03-12T16:27:40.4206569Z ok  	github.com/terraform-providers/terraform-provider-github/github	13.894s
2020-03-12T16:27:41.1103641Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:27:54.1677956Z === RUN   TestAccGithubTeamMembership_caseInsensitive
2020-03-12T16:27:54.1679190Z --- PASS: TestAccGithubTeamMembership_caseInsensitive (10.92s)
2020-03-12T16:27:54.1679695Z PASS
2020-03-12T16:27:54.1680286Z ok  	github.com/terraform-providers/terraform-provider-github/github	10.937s
2020-03-12T16:27:54.1939105Z Skipping test TestAccOrganizationBlock_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1939751Z Skipping test TestAccGithubUserInvitationAccepter_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1940084Z Skipping test TestAccGithubRepository_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1941963Z Skipping test TestAccGithubRepository_archive as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1942402Z Skipping test TestAccGithubRepository_archiveUpdate as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1943089Z Skipping test TestAccGithubRepository_hasProjects as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1943417Z Skipping test TestAccGithubRepository_defaultBranch as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1943746Z Skipping test TestAccGithubRepository_templates as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1944164Z Skipping test TestAccGithubRepository_topics as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1944525Z Skipping test TestAccGithubRepository_autoInitForceNew as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1945036Z Skipping test TestAccGithubRepository_createFromTemplate as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1945422Z Skipping test TestAccGithubRepositoryDataSource_fullName_noMatchReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1946124Z Skipping test TestAccGithubRepositoryDataSource_name_noMatchReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1947219Z Skipping test TestAccGithubRepositoryDataSource_fullName_existing as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1948223Z Skipping test TestAccGithubRepositoryDataSource_name_existing as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1949252Z Skipping test TestAccGithubRepositoryDeployKey_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1950203Z Skipping test TestAccGithubMembership_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.1951271Z Skipping test TestAccGithubMembership_caseInsensitive as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:27:54.8376912Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:10.3199778Z === RUN   TestAccGithubTeamRepository_basic
2020-03-12T16:28:10.3200046Z === PAUSE TestAccGithubTeamRepository_basic
2020-03-12T16:28:10.3200722Z === CONT  TestAccGithubTeamRepository_basic
2020-03-12T16:28:10.3201586Z --- FAIL: TestAccGithubTeamRepository_basic (13.24s)
2020-03-12T16:28:10.3202127Z     testing.go:654: Step 0 error: Check failed: Check 1/2 error: GET https://api.github.com/organizations/0/team/3704915/repos/terraformtesting/tf-acc-test-team-3ywfr: 404 Not Found []
2020-03-12T16:28:10.3202378Z FAIL
2020-03-12T16:28:10.3202699Z FAIL	github.com/terraform-providers/terraform-provider-github/github	13.259s
2020-03-12T16:28:10.3202851Z FAIL
2020-03-12T16:28:10.3434995Z Skipping test TestAccCheckGetPermissions as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:11.0030603Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:18.8095734Z === RUN   TestAccGithubTeam_basic
2020-03-12T16:28:18.8096003Z === PAUSE TestAccGithubTeam_basic
2020-03-12T16:28:18.8096195Z === CONT  TestAccGithubTeam_basic
2020-03-12T16:28:18.8096922Z --- FAIL: TestAccGithubTeam_basic (5.78s)
2020-03-12T16:28:18.8097195Z     testing.go:654: Step 0 error: Check failed: Check 1/8 error: GET https://api.github.com/organizations/0/team/3704916: 404 Not Found []
2020-03-12T16:28:18.8097392Z FAIL
2020-03-12T16:28:18.8097733Z FAIL	github.com/terraform-providers/terraform-provider-github/github	5.792s
2020-03-12T16:28:18.8101696Z FAIL
2020-03-12T16:28:19.4535608Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:25.9988762Z === RUN   TestAccGithubTeam_slug
2020-03-12T16:28:25.9988936Z === PAUSE TestAccGithubTeam_slug
2020-03-12T16:28:25.9989064Z === CONT  TestAccGithubTeam_slug
2020-03-12T16:28:25.9989761Z --- FAIL: TestAccGithubTeam_slug (4.36s)
2020-03-12T16:28:25.9989992Z     testing.go:654: Step 0 error: Check failed: Check 1/8 error: GET https://api.github.com/organizations/0/team/3704917: 404 Not Found []
2020-03-12T16:28:25.9990174Z FAIL
2020-03-12T16:28:25.9990490Z FAIL	github.com/terraform-providers/terraform-provider-github/github	4.368s
2020-03-12T16:28:25.9990634Z FAIL
2020-03-12T16:28:26.6318953Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:35.2617306Z === RUN   TestAccGithubTeam_hierarchical
2020-03-12T16:28:35.2617546Z === PAUSE TestAccGithubTeam_hierarchical
2020-03-12T16:28:35.2618494Z === CONT  TestAccGithubTeam_hierarchical
2020-03-12T16:28:35.2619846Z --- FAIL: TestAccGithubTeam_hierarchical (6.57s)
2020-03-12T16:28:35.2620117Z     testing.go:654: Step 0 error: Check failed: Check 1/4 error: GET https://api.github.com/organizations/0/team/3704918: 404 Not Found []
2020-03-12T16:28:35.2620284Z FAIL
2020-03-12T16:28:35.2620770Z FAIL	github.com/terraform-providers/terraform-provider-github/github	6.588s
2020-03-12T16:28:35.2620910Z FAIL
2020-03-12T16:28:35.2884172Z Skipping test TestAccGithubRepositoryWebhook_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:35.2884805Z Skipping test TestAccGithubRepositoryWebhook_secret as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:35.9272710Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:38.4626380Z === RUN   TestAccGithubTeamDataSource_noMatchReturnsError
2020-03-12T16:28:38.4626616Z === PAUSE TestAccGithubTeamDataSource_noMatchReturnsError
2020-03-12T16:28:38.4626796Z === CONT  TestAccGithubTeamDataSource_noMatchReturnsError
2020-03-12T16:28:38.4627535Z --- PASS: TestAccGithubTeamDataSource_noMatchReturnsError (0.37s)
2020-03-12T16:28:38.4627919Z PASS
2020-03-12T16:28:38.4628240Z ok  	github.com/terraform-providers/terraform-provider-github/github	0.389s
2020-03-12T16:28:38.4836117Z Skipping test TestAccGithubUserSshKey_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4836342Z Skipping test TestAccGithubIpRangesDataSource_existing as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4839004Z Skipping test TestAccGithubRepositoryCollaborator_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4840631Z Skipping test TestAccGithubRepositoryCollaborator_caseInsensitive as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4843046Z Skipping test TestAccGithubRepositoryProject_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4845405Z Skipping test TestAccGithubUserGpgKey_basic as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4845606Z Skipping test TestAccGithubUserDataSource_noMatchReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4848310Z Skipping test TestAccGithubUserDataSource_existing as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4848511Z Skipping test TestAccGithubReleaseDataSource_fetchByLatestNoReleaseReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4848700Z Skipping test TestAccGithubReleaseDataSource_latestExisting as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4854576Z Skipping test TestAccGithubReleaseDataSource_fetchByIdWithNoIdReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4854782Z Skipping test TestAccGithubReleaseDataSource_fetchByIdExisting as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4855112Z Skipping test TestAccGithubReleaseDataSource_fetchByTagNoTagReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4855320Z Skipping test TestAccGithubReleaseDataSource_fetchByTagExisting as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:38.4855502Z Skipping test TestAccGithubReleaseDataSource_invalidRetrieveMethodReturnsError as it does not match the RUN_FILTER (TestAccGithubTeam)
2020-03-12T16:28:39.0459438Z ?   	github.com/terraform-providers/terraform-provider-github	[no test files]
2020-03-12T16:28:39.7088146Z Post job cleanup.
2020-03-12T16:28:39.8116873Z [command]/usr/bin/git version
2020-03-12T16:28:39.8178245Z git version 2.25.1
2020-03-12T16:28:39.8206262Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2020-03-12T16:28:39.8244604Z http.https://github.com/.extraheader
2020-03-12T16:28:39.8253858Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2020-03-12T16:28:39.8346207Z Cleaning up orphan processes

I suspect we need to align all occurrences of conn.Teams. with correct arguments now that the orgID needs to be supplied.

@jcudit
Copy link
Contributor

jcudit commented Mar 19, 2020

@benj-fletch I've root caused the failing tests. I think this branch will be safe to merge after fixing the documentation conflict that was introduced and applying the following patch:

From 25742709ff4b0e12bcc15e7b17e12dd84687620b Mon Sep 17 00:00:00 2001
From: Jeremy Udit <jcudit@github.com>
Date: Thu, 19 Mar 2020 07:54:37 -0400
Subject: [PATCH] Fix Failing Team Tests

---
 github/resource_github_team_repository_test.go | 2 +-
 github/resource_github_team_test.go            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/github/resource_github_team_repository_test.go b/github/resource_github_team_repository_test.go
index 6492bd4..3b15a25 100644
--- a/github/resource_github_team_repository_test.go
+++ b/github/resource_github_team_repository_test.go
@@ -123,7 +123,7 @@ func testAccCheckGithubTeamRepositoryExists(n string, repository *github.Reposit
 		}
 
 		repo, _, err := conn.Teams.IsTeamRepoByID(context.TODO(),
-			repository.GetID(),
+			testAccProvider.Meta().(*Organization).id,
 			teamId,
 			testAccProvider.Meta().(*Organization).name,
 			repoName)
diff --git a/github/resource_github_team_test.go b/github/resource_github_team_test.go
index cf7c71f..e15ac83 100644
--- a/github/resource_github_team_test.go
+++ b/github/resource_github_team_test.go
@@ -146,7 +146,7 @@ func testAccCheckGithubTeamExists(n string, team *github.Team) resource.TestChec
 			return unconvertibleIdErr(rs.Primary.ID, err)
 		}
 
-		githubTeam, _, err := conn.Teams.GetTeamByID(context.TODO(), team.Organization.GetID(), id)
+		githubTeam, _, err := conn.Teams.GetTeamByID(context.TODO(), testAccProvider.Meta().(*Organization).id, id)
 		if err != nil {
 			return err
 		}
-- 
2.15.1

@benj-fletch
Copy link
Contributor Author

Hi @jcudit - firstly apologies for not getting to look at this, I have been up to my eyeballs in client work.
Thanks a lot for looking at the test issues, I have applied your patch, hopefully the GH actions will succeed now.

Copy link
Contributor

@jcudit jcudit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to apologize. This project is volunteer work and there are a lot of more important things going on in the world 😄 . I always appreciate when someone takes any amount of time to help out.

I'll address the CI failure in a separate PR and proceed with merging this one.

@jcudit jcudit merged commit 081d542 into integrations:master Mar 20, 2020
@martinssipenko
Copy link
Contributor

🎉

@benj-fletch benj-fletch deleted the gh-271-update-to-go-github-v29-0-3 branch March 20, 2020 14:15
@jcudit jcudit added this to the v2.5.0 milestone Mar 27, 2020
kfcampbell pushed a commit to kfcampbell/terraform-provider-github that referenced this pull request Jul 26, 2022
…update-to-go-github-v29-0-3

Updated to go-github v29.0.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants