pulumi/tests
bors[bot] 0e576d98ba
Merge #12625
12625: [pkg] Bump pulumi-terraform-bridge r=blampe a=blampe

<!--- 
Thanks so much for your contribution! If this is your first time contributing, please ensure that you have read the [CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md) documentation.
-->

# Description

Updates pulumi-terraform-bridge to pull in https://github.com/pulumi/pulumi-terraform-bridge/pull/859, which resolves an issue where we could fail to build:

```
github.com/pulumi/pulumi-terraform-bridge/v3@v3.34.1-0.20221214173921-8e65b1f9fdd5 requires
	github.com/pulumi/pulumi-java/pkg@v0.6.0 requires
	github.com/pulumi/pulumi/pkg/v3@v3.36.1-0.20220725155140-d69eea638451 requires
	github.com/pulumi/pulumi-java/pkg@v0.5.0 requires
	github.com/pulumi/pulumi/pkg/v3@v3.35.4-0.20220707201547-515cf6191cb9 requires
	github.com/pulumi/pulumi/sdk/v3@v3.35.4-0.20220706194433-bf578c5d4a27: invalid version: unknown revision bf578c5d4a
```

## Checklist

<!--- Please provide details if the checkbox below is to be left unchecked. -->
- [ ] I have added tests that prove my fix is effective or that my feature works
<!--- 
User-facing changes require a CHANGELOG entry.
-->
- [x] I have run `make changelog` and committed the `changelog/pending/<file>` documenting my change
<!--
If the change(s) in this PR is a modification of an existing call to the Pulumi Service,
then the service should honor older versions of the CLI where this change would not exist.
You must then bump the API version in /pkg/backend/httpstate/client/api.go, as well as add
it to the service.
-->
- [ ] Yes, there are changes in this PR that warrants bumping the Pulumi Service API version
  <!-- `@Pulumi` employees: If yes, you must submit corresponding changes in the service repo. -->


Co-authored-by: Bryce Lampe <bryce@pulumi.com>
2023-04-14 18:17:03 +00:00
..
benchmarks/go-alias-norm Bump go-git to v5.6.0 to remove cgo dependency fixing 2023-02-28 16:01:31 -08:00
examples Rename "Smoke" test to "Acceptance" tests 2023-01-30 15:38:37 -05:00
integration test: Add failing test case for #12593 2023-04-13 18:12:18 -07:00
testprovider all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
.gitignore ci: Use reduced smoke testing on Windows & macOS targets 2022-09-21 09:55:06 -07:00
README.md Rename "Smoke" test to "Acceptance" tests 2023-01-30 15:38:37 -05:00
about_test.go test: fix regex used to test Go version output in about command. (#10499) 2022-08-29 11:53:03 -07:00
config_test.go filestate: Re-add project support 2023-03-31 13:21:36 -07:00
go.mod [pkg] Bump pulumi-terraform-bridge 2023-04-14 10:25:22 -07:00
go.sum [pkg] Bump pulumi-terraform-bridge 2023-04-14 10:25:22 -07:00
history_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
login_test.go ci: radical idea - what if slow tests & no stdout makes GH consider runner dead? 2022-03-06 14:52:13 -08:00
main_test.go [breaking] Changing the version of go.mod in sdk / pkg to be v3 2021-04-14 19:32:18 +01:00
remote_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
roundtrip_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
stack_test.go filestate: Re-add project support 2023-03-31 13:21:36 -07:00

README.md

Integration Tests

This module provides integration tests for the Pulumi CLI.

The tests can be run via:

make test_all

Usage of Go build tags

In order to speed up integration tests in GitHub actions, Go build tags are used to conditionally compile the desired test cases.

// integration_nodejs_test.go
//go:build (nodejs || all) && !xplatform-acceptance

// integration_nodejs_acceptance_test.go
//go:build nodejs || all