Skip to content

Commit

Permalink
Remove vestigial code
Browse files Browse the repository at this point in the history
  • Loading branch information
multimeric committed Nov 19, 2024
1 parent 61e1240 commit 72c4a37
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions core/tests/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from napari_workflows import Workflow
from pytest import FixtureRequest

from tests.utils import skip_on_github_ci

from .params import parameterized

Expand Down Expand Up @@ -110,7 +109,6 @@ def test_process_deconvolution(background: Any):
assert slice.data.ndim == 3


# @skip_on_github_ci
@pytest.mark.parametrize(
["workflow_name"], [("image_workflow",), ("table_workflow",)]
)
Expand All @@ -135,7 +133,6 @@ def test_process_workflow(
assert output.roi_index is None or isinstance(output.roi_index, int)
assert isinstance(output.data, (Path, DataFrame))

# @skip_on_github_ci
def test_table_workflow(
lls7_t1_ch1: Path, table_workflow: Workflow
):
Expand Down
5 changes: 0 additions & 5 deletions core/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from lls_core.cmds.__main__ import app
import npy2bdv
from aicsimageio import AICSImage
import pytest
import os

def invoke(args: Sequence[str]):
CliRunner().invoke(app, args, catch_exceptions=False)
Expand All @@ -17,6 +15,3 @@ def valid_image_path(path: Path) -> bool:
else:
AICSImage(path).get_image_data()
return True


skip_on_github_ci: pytest.MarkDecorator = pytest.mark.skipif('GITHUB_ACTIONS' in os.environ, reason="Skipping as this doesn't work properly on Github Actions")

0 comments on commit 72c4a37

Please sign in to comment.