diff --git a/test-integration/test_integration/fixtures/hello-image/cog.yaml b/test-integration/test_integration/fixtures/hello-image/cog.yaml deleted file mode 100644 index 3fc0242f91..0000000000 --- a/test-integration/test_integration/fixtures/hello-image/cog.yaml +++ /dev/null @@ -1,4 +0,0 @@ -build: - python_version: "3.11" -predict: "predict.py:Predictor" -image: "r8.im/replicate/hello-image" diff --git a/test-integration/test_integration/fixtures/hello-image/hello.webp b/test-integration/test_integration/fixtures/hello-image/hello.webp deleted file mode 100644 index df83a4d4f4..0000000000 Binary files a/test-integration/test_integration/fixtures/hello-image/hello.webp and /dev/null differ diff --git a/test-integration/test_integration/fixtures/hello-image/predict.py b/test-integration/test_integration/fixtures/hello-image/predict.py deleted file mode 100644 index 3a6b9e2fe3..0000000000 --- a/test-integration/test_integration/fixtures/hello-image/predict.py +++ /dev/null @@ -1,6 +0,0 @@ -from cog import BasePredictor, Path - - -class Predictor(BasePredictor): - def predict(self, word: str) -> Path: - return Path("hello.webp")