From 848866cadc558891e0288dbf3e1cb91a5f6e34fb Mon Sep 17 00:00:00 2001 From: Matt Busche Date: Sun, 3 Nov 2024 13:32:55 -0600 Subject: [PATCH] add python path --- .github/workflows/pytest.yml | 3 ++- tests/{test.py => test_things.py} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename tests/{test.py => test_things.py} (100%) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index a41cea2..80993df 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,8 +17,9 @@ jobs: - name: Install dependencies run: | + export PYTHONPATH=$PYTHONPATH:. python -m pip install --upgrade pip pip install -r requirements.txt - name: Run pytest - run: pytest + run: pytest tests/ diff --git a/tests/test.py b/tests/test_things.py similarity index 100% rename from tests/test.py rename to tests/test_things.py