Disable LLM test until our testing pipeline better supports large images.

PiperOrigin-RevId: 598988194
This commit is contained in:
Etienne Perot
2024-01-16 16:11:56 -08:00
committed by gVisor bot
parent a81dd32be7
commit 7aee3ecbba
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -293,7 +293,8 @@ cos-gpu-smoke-tests: gpu-smoke-images $(RUNTIME_BIN)
# This is a superset of those needed for smoke tests.
# It includes non-GPU images that are used as part of GPU tests,
# e.g. busybox and python.
gpu-images: gpu-smoke-images load-gpu_pytorch load-gpu_ollama load-basic_busybox load-basic_python
# TODO(b/306706609): Add "load-gpu_ollama" and "load-basic_busybox" back here.
gpu-images: gpu-smoke-images load-gpu_pytorch load-basic_python
.PHONY: gpu-images
gpu-all-tests: gpu-images gpu-smoke-tests $(RUNTIME_BIN)
+1
View File
@@ -66,6 +66,7 @@ func runSandboxedPython(ctx context.Context, logger testutil.Logger, code string
// Then it asks it to write a unit test that verifies that
// this text is a correct translation.
func TestLLM(t *testing.T) {
t.Skip("Test is disabled until support for large images is better.")
ctx := context.Background()
// Run the LLM.
llmContainer := dockerutil.MakeContainer(ctx, t)