Skip to content

Commit

Permalink
Tests fix: no more miniconda, its miniforge now
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun024 committed Dec 3, 2024
1 parent 199d7ad commit e652455
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
File renamed without changes.
1 change: 0 additions & 1 deletion fixtures/multibuildpack/miniconda/runtime.txt

This file was deleted.

6 changes: 3 additions & 3 deletions src/go/integration/multibuildpack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func testMultiBuildpack(platform switchblade.Platform, fixtures string) func(*te
Eventually(deployment).Should(Serve(ContainSubstring(`[{"hello":"world"}]`)))
})

it("an app is pushed which uses miniconda", func() {
it("an app is pushed which uses conda", func() {
deployment, logs, err := platform.Deploy.
WithBuildpacks(
"https://github.com/cloudfoundry/python-buildpack#master",
Expand All @@ -92,10 +92,10 @@ func testMultiBuildpack(platform switchblade.Platform, fixtures string) func(*te
WithEnv(map[string]string{
"GOPACKAGENAME": "go-online",
}).
Execute(name, filepath.Join(fixtures, "multibuildpack", "miniconda"))
Execute(name, filepath.Join(fixtures, "multibuildpack", "conda"))
Expect(err).NotTo(HaveOccurred())

Expect(logs).To(ContainLines(ContainSubstring("Installing Miniconda")))
Expect(logs).To(ContainLines(ContainSubstring("Installing Miniforge")))
Eventually(deployment).Should(Serve(ContainSubstring(`[{"hello":"world"}]`)))
})

Expand Down

0 comments on commit e652455

Please sign in to comment.