From b4512baf105305d3d0846f35fb59ea8e65190394 Mon Sep 17 00:00:00 2001 From: Nihal Nayak Date: Fri, 12 Jul 2024 10:26:02 -0400 Subject: [PATCH] Ignore vLLM test (#57) * add: vllm support * fix: change model in test * formatted with black * add: ignore tests for vllm on github * ignore pytest for vllm --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23efe9b..2f88adc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,6 @@ on: push: paths-ignore: - '**.rst' - - 'tests/test_vllm.py' # requires vllm to be installed jobs: build: @@ -26,7 +25,7 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | - pytest + pytest --ignore=tests/test_vllm.py contrib-readme-job: runs-on: ubuntu-latest