diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ba2c07c..1e7f0cde 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,14 +38,14 @@ jobs: docker compose --profile full up - name: Setup Python environment - working-directory: ./tests/e2e-pytest + working-directory: ./tests/pytest run: | set -euo pipefail pip3 install -r requirements.txt >> /dev/null sudo chmod -R 775 /home/runner/ - name: Run tests - working-directory: ./tests/e2e-pytest + working-directory: ./tests/pytest run: | set -euo pipefail pytest -v -rP *.py \ No newline at end of file diff --git a/tests/e2e-pytest/helpers.py b/tests/pytest/helpers.py similarity index 100% rename from tests/e2e-pytest/helpers.py rename to tests/pytest/helpers.py diff --git a/tests/e2e-pytest/requirements.txt b/tests/pytest/requirements.txt similarity index 100% rename from tests/e2e-pytest/requirements.txt rename to tests/pytest/requirements.txt diff --git a/tests/e2e-pytest/test_resolution.py b/tests/pytest/test_resolution.py similarity index 100% rename from tests/e2e-pytest/test_resolution.py rename to tests/pytest/test_resolution.py