diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 013df5ddf..d0f8e7ab4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,6 +25,6 @@ jobs: run: | python -m pip install --upgrade pip pip install .[dev] - - name: Run tests + - name: Run unit tests run: | - pytest tests/ \ No newline at end of file + pytest tests/unit \ No newline at end of file diff --git a/tests/nodes/__init__.py b/tests/unit/__init__.py similarity index 100% rename from tests/nodes/__init__.py rename to tests/unit/__init__.py diff --git a/tests/nodes/test_arithmetic_unit.py b/tests/unit/test_arithmetic_nodes.py similarity index 100% rename from tests/nodes/test_arithmetic_unit.py rename to tests/unit/test_arithmetic_nodes.py diff --git a/tests/nodes/test_colormap_unit.py b/tests/unit/test_colormap_nodes.py similarity index 100% rename from tests/nodes/test_colormap_unit.py rename to tests/unit/test_colormap_nodes.py diff --git a/tests/nodes/test_openapi_unit.py b/tests/unit/test_openapi_nodes.py similarity index 100% rename from tests/nodes/test_openapi_unit.py rename to tests/unit/test_openapi_nodes.py