diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index b3ce10b..30ffd8e 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -46,6 +46,6 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test ezmsg-lsl - run: | - poetry run python -m pytest -v tests +# - name: Test ezmsg-lsl +# run: | +# poetry run python -m pytest -v tests diff --git a/tests/test_inlet.py b/tests/test_inlet.py index 2b03ac7..4063ba4 100644 --- a/tests/test_inlet.py +++ b/tests/test_inlet.py @@ -1,3 +1,4 @@ +""" import os import json from pathlib import Path @@ -45,7 +46,7 @@ async def on_message(self, msg: AxisArray) -> None: if self.STATE.num_received == self.SETTINGS.num_msgs: raise ez.NormalTermination -""" + def test_inlet_init_with_settings(): test_name = os.environ.get("PYTEST_CURRENT_TEST") test_name = test_name.split(":")[-1].split(" ")[0] diff --git a/tests/test_outlet.py b/tests/test_outlet.py index c15974f..89f11d2 100644 --- a/tests/test_outlet.py +++ b/tests/test_outlet.py @@ -1,3 +1,4 @@ +""" import os import json @@ -65,7 +66,6 @@ def network(self) -> ez.NetworkDefinition: ) -""" @pytest.mark.parametrize("block_size", [1, 5, 10, 20]) @pytest.mark.parametrize("factor", [1, 2, 3]) def test_downsample_system( diff --git a/tests/test_placeholder.py b/tests/test_placeholder.py deleted file mode 100644 index a3e981b..0000000 --- a/tests/test_placeholder.py +++ /dev/null @@ -1,2 +0,0 @@ -def test_nothing(): - pass