diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 95% rename from .github/ci.yml rename to .github/workflows/ci.yml index 06b384e..0351db3 100644 --- a/.github/ci.yml +++ b/.github/workflows/ci.yml @@ -42,3 +42,6 @@ jobs: - name: Install package run: uv pip install --system "pyneapples[dev] @ ." + + - name: Test package + run: pytest diff --git a/tests/test_module_call.py b/tests/test_module_call.py index eb05263..e02a27c 100644 --- a/tests/test_module_call.py +++ b/tests/test_module_call.py @@ -1,6 +1,6 @@ import numpy as np import pytest -from src.pyneapples.rep_sampler_2d import GeomReduction +from pyneapples.rep_sampler_2d import GeomReduction @pytest.fixture def geom_reduction_instance():