From 432e3a94d5a29a543c9d5e47dfa69b4bdd730382 Mon Sep 17 00:00:00 2001 From: Atul_Singh Date: Sat, 18 May 2024 13:29:38 +0200 Subject: [PATCH] fix: test to run on code and not on installed package and workflow for this --- .github/workflows/pytest.yml | 2 +- tests/e2e.py => e2e.py | 0 tests/__init__.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename tests/e2e.py => e2e.py (100%) delete mode 100644 tests/__init__.py diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 33e54f8..51b320c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -25,4 +25,4 @@ jobs: - name: Run test suite run: | - pytest -v tests/e2e.py + pytest -v e2e.py diff --git a/tests/e2e.py b/e2e.py similarity index 100% rename from tests/e2e.py rename to e2e.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000