Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Sep 7, 2023
1 parent 9eeca1c commit 65a9a2c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import json
from pathlib import Path

from eye2bids.edf2bids import main
import pytest

# import pytest
from eye2bids.edf2bids import _check_edf2asc_present, main


# @pytest.mark.skip(reason="Not implemented yet")
def test_edf_end_to_end():
if not _check_edf2asc_present():
pytest.skip("edf2asc missing")
data_dir = Path(__file__).parent / "data"
input_file = data_dir / "decisions_modality_baptisteC2_7-5-2016_21-26-13.edf"
metadata_file = data_dir / "metadata.yml"
Expand Down

0 comments on commit 65a9a2c

Please sign in to comment.