We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a879af9 commit db270e3Copy full SHA for db270e3
1 file changed
bundle/tests/python_wheel_test.go
@@ -14,22 +14,6 @@ import (
14
"github.com/stretchr/testify/require"
15
)
16
17
-func TestPythonWheelBuild(t *testing.T) {
18
- b := loadTarget(t, "./python_wheel/python_wheel", "default")
19
-
20
- ctx := context.Background()
21
- diags := phases.Build(ctx, b)
22
- require.NoError(t, diags.Error())
23
24
- matches, err := filepath.Glob("./python_wheel/python_wheel/my_test_code/dist/my_test_code-*.whl")
25
- require.NoError(t, err)
26
- require.Len(t, matches, 1)
27
28
- match := libraries.ExpandGlobReferences()
29
- diags = bundle.Apply(ctx, b, match)
30
31
-}
32
33
func TestPythonWheelBuildAutoDetect(t *testing.T) {
34
b := loadTarget(t, "./python_wheel/python_wheel_no_artifact", "default")
35
0 commit comments