From 2272c095306387c6d2e2bc0dbfaaa82c1b3842eb Mon Sep 17 00:00:00 2001 From: Julien Poissonnier Date: Fri, 2 Aug 2024 13:40:14 +0200 Subject: [PATCH] remove old tests --- tests/containers_test.go | 56 ---------------------------------------- 1 file changed, 56 deletions(-) diff --git a/tests/containers_test.go b/tests/containers_test.go index e60c92f1..2cb70daf 100644 --- a/tests/containers_test.go +++ b/tests/containers_test.go @@ -148,62 +148,6 @@ func TestKitchenSinkPythonVersions(t *testing.T) { }) }) } - - // t.Run("defaults to 3.9", func(t *testing.T) { - // copyTestData(t, "testdata/python-default") - // integration.ProgramTest(t, &integration.ProgramTestOptions{ - // Dir: "testdata/python-default", - // Quick: true, - // SkipRefresh: true, - // PrepareProject: func(info *engine.Projinfo) error { - // cmd := exec.Command("pulumi", "install") - // cmd.Dir = info.Root - // return cmd.Run() - // }, - // }) - // }) - - // t.Run("select 3.9", func(t *testing.T) { - // copyTestData(t, "testdata/python-3.9") - // integration.ProgramTest(t, &integration.ProgramTestOptions{ - // Dir: "testdata/python-3.9", - // Quick: true, - // SkipRefresh: true, - // PrepareProject: func(info *engine.Projinfo) error { - // cmd := exec.Command("pulumi", "install") - // cmd.Dir = info.Root - // return cmd.Run() - // }, - // }) - // }) - - // t.Run("select 3.12", func(t *testing.T) { - // copyTestData(t, "testdata/python-3.12") - // integration.ProgramTest(t, &integration.ProgramTestOptions{ - // Dir: "testdata/python-3.12", - // Quick: true, - // SkipRefresh: true, - // PrepareProject: func(info *engine.Projinfo) error { - // cmd := exec.Command("pulumi", "install") - // cmd.Dir = info.Root - // return cmd.Run() - // }, - // }) - // }) - - // t.Run("select 3.10.2 - installs on demand", func(t *testing.T) { - // copyTestData(t, "testdata/python-3.10.2") - // integration.ProgramTest(t, &integration.ProgramTestOptions{ - // Dir: "testdata/python-3.10.2", - // Quick: true, - // SkipRefresh: true, - // PrepareProject: func(info *engine.Projinfo) error { - // cmd := exec.Command("pulumi", "install") - // cmd.Dir = info.Root - // return cmd.Run() - // }, - // }) - // }) } func TestCLIToolTests(t *testing.T) {