Files
pulumi-incus/examples/examples_py_test.go
2025-04-18 13:26:52 -07:00

24 lines
478 B
Go

// Copyright 2024, Pulumi Corporation. All rights reserved.
//go:build python || all
// +build python all
package examples
import (
"path/filepath"
"testing"
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
)
func TestBasicPy(t *testing.T) {
t.Skip("Skipping until the provider has been implemented")
test := getPythonBaseOptions(t).
With(integration.ProgramTestOptions{
Dir: filepath.Join(getCwd(t), "basic-py"),
})
integration.ProgramTest(t, &test)
}