Skip to content

Commit 9abbf71

Browse files
committed
CI: integration tests can't run without systemd
And I'm not taking the time to figure out how to get that running in CI right now :o)
1 parent bafeaed commit 9abbf71

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/sysdi_tests/test_integration.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from os import environ
12
from pathlib import Path
23

34
import pytest
@@ -29,6 +30,9 @@ def um():
2930
um.remove_all()
3031

3132

33+
pytestmark = pytest.mark.skipif(bool(environ.get('CI')), reason='not run in CI')
34+
35+
3236
class TestExecWrap:
3337
@pytest.fixture(autouse=True)
3438
def remove_all(self, um):

0 commit comments

Comments
 (0)