From 52a1a6e4da1451ec047cabfcec7a531361f66b67 Mon Sep 17 00:00:00 2001 From: cotran Date: Wed, 16 Oct 2024 16:27:47 -0700 Subject: [PATCH] fix precommit --- .github/workflows/model-server-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/model-server-tests.yml b/.github/workflows/model-server-tests.yml index c7fe5c71..6f231099 100644 --- a/.github/workflows/model-server-tests.yml +++ b/.github/workflows/model-server-tests.yml @@ -26,11 +26,10 @@ jobs: # Step 3: Install dependencies (from requirements.txt or Pipfile) - name: Install dependencies run: | - python -m venv venv - source venv/bin/activate cd model_server pip install --upgrade pip pip install -r requirements.txt # Or use pipenv install + pip install pytest # Step 4: Set PYTHONPATH and run tests - name: Run model server tests with pytest