Skip to content

Commit fd9f7b3

Browse files
committed
fix(tests): skip some tests on Travis
1 parent d461433 commit fd9f7b3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

sdcflows/models/tests/test_pepolar.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test pepolar type of fieldmaps."""
2+
import os
23
from pathlib import Path
34
from json import loads
45
import pytest
@@ -9,6 +10,7 @@
910
from ..pepolar import Workflow, init_topup_wf
1011

1112

13+
@pytest.mark.skipif(os.getenv("TRAVIS") == "true", reason="this is TravisCI")
1214
@pytest.mark.parametrize(
1315
"epi_path",
1416
[

sdcflows/models/tests/test_phdiff.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test phase-difference type of fieldmaps."""
2+
import os
23
from pathlib import Path
34
from json import loads
45

@@ -9,6 +10,7 @@
910
from ..fieldmap import init_fmap_wf, Workflow
1011

1112

13+
@pytest.mark.skipif(os.getenv("TRAVIS") == "true", reason="this is TravisCI")
1214
@pytest.mark.parametrize(
1315
"fmap_path",
1416
[

0 commit comments

Comments
 (0)