From 9b561836bacf871daf6f9b98ceb329b669e8da10 Mon Sep 17 00:00:00 2001 From: Declan <5962877+dec1@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:45:01 +0200 Subject: [PATCH] update pipeline to match new dir structure (venv dir) --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3d98932..c817f49 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,10 +30,10 @@ jobs: cd ../.. - name: Run tests with pytest - run: ./prj/script/venv/bin/pytest test/ + run: ./prj/venv/bin/pytest test/ - name: Run type checking with mypy - run: ./prj/script/venv/bin/mypy --check-untyped-defs -p test -p src + run: ./prj/venv/bin/mypy --check-untyped-defs -p test -p src #- name: Run linter with pylint # run: ./prj/script/venv/bin/python -m pylint src