Skip to content

Commit

Permalink
Check if subversion is available before running svn provider test
Browse files Browse the repository at this point in the history
Fixed formatting.
  • Loading branch information
blueluna authored and olofk committed Dec 19, 2024
1 parent e195160 commit 6528646
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def test_github_provider():
assert fref.read() == fgen.read(), f


@pytest.mark.skipif(shutil.which("svn") == None, reason="Subversion not installed")
def test_svn_provider():
cache_root = tempfile.mkdtemp("svn_")
core = Core(
Expand Down

0 comments on commit 6528646

Please sign in to comment.