From 657dc3ea4fa85d3e66881eef5c383cefe5138428 Mon Sep 17 00:00:00 2001 From: Hoyt Koepke Date: Fri, 3 May 2024 14:55:42 -0700 Subject: [PATCH] Added tests running for url. --- .github/workflows/commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index 9e38a2c..eef2847 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -51,7 +51,7 @@ jobs: cd python/pyxet pip install -r tests/requirements.txt pip install target/wheels/pyxet*.whl - pytest tests + pytest pyxet/ tests/ # Tests also live in the code itself - name: Unit and integration tests (Windows) if: runner.os == 'Windows' env: @@ -66,5 +66,5 @@ jobs: pip install $_.FullName } cd .. - python -m pytest pyxet/tests + python -m pytest pyxet/tests/ pyxet/pyxet/ # Tests also live in the code itself, so run those too