mirror of https://github.com/pulumi/pulumi.git
36 lines
800 B
Go
36 lines
800 B
Go
//go:build (python || all) && !xplatform_acceptance
|
|
|
|
package ints
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
|
|
)
|
|
|
|
func TestCustomTimeouts(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
opts := &integration.ProgramTestOptions{
|
|
Dir: filepath.Join(".", "python", "success"),
|
|
Dependencies: []string{
|
|
filepath.Join("..", "..", "..", "sdk", "python", "env", "src"),
|
|
},
|
|
Quick: true,
|
|
DestroyOnCleanup: true,
|
|
}
|
|
integration.ProgramTest(t, opts)
|
|
|
|
opts = &integration.ProgramTestOptions{
|
|
Dir: filepath.Join(".", "python", "failure"),
|
|
Dependencies: []string{
|
|
filepath.Join("..", "..", "..", "sdk", "python", "env", "src"),
|
|
},
|
|
Quick: true,
|
|
DestroyOnCleanup: true,
|
|
ExpectFailure: true,
|
|
}
|
|
integration.ProgramTest(t, opts)
|
|
}
|