pulumi/tests/integration/transforms/transforms_py_test.go

34 lines
846 B
Go

// Copyright 2016-2024, Pulumi Corporation. All rights reserved.
//go:build (python || all) && !xplatform_acceptance
package ints
import (
"path/filepath"
"testing"
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
)
func TestPythonTransforms(t *testing.T) {
t.Parallel()
//nolint:paralleltest // ProgramTest calls t.Parallel()
for _, dir := range Dirs {
d := filepath.Join("python", dir)
t.Run(d, func(t *testing.T) {
integration.ProgramTest(t, &integration.ProgramTestOptions{
Dir: d,
Dependencies: []string{
filepath.Join("..", "..", "..", "sdk", "python", "env", "src"),
},
LocalProviders: []integration.LocalDependency{
{Package: "testprovider", Path: filepath.Join("..", "..", "testprovider")},
},
Quick: true,
ExtraRuntimeValidation: Validator,
})
})
}
}