Skip to content

Commit

Permalink
Adding skip logic to test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
KrishnanPrash committed Jul 12, 2024
1 parent 3d30c8a commit 29b29eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ def test_vllm_e2e(self, protocol):
TritonCommands._infer(model, prompt=PROMPT, protocol=protocol)
TritonCommands._profile(model, backend="vllm")

@pytest.mark.skipif(
os.environ.get("CI_PIPELINE") == "GITHUB_ACTIONS",
reason="bandage/temporary fix",
)
@pytest.mark.parametrize("protocol", ["grpc", "http"])
def test_non_llm(self, protocol):
# This test runs on the default Triton image, as well as on both TRT-LLM and VLLM images.
Expand Down

0 comments on commit 29b29eb

Please sign in to comment.