We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ac84c commit 8bc2b26Copy full SHA for 8bc2b26
tests/test_pytest_plugin.py
@@ -9,6 +9,7 @@
9
from libvcs.pytest_plugin import CreateRepoPytestFixtureFn
10
11
12
+@pytest.mark.benchmark
13
@pytest.mark.skipif(not shutil.which("git"), reason="git is not available")
14
def test_create_git_remote_repo(
15
create_git_remote_repo: CreateRepoPytestFixtureFn,
@@ -22,6 +23,7 @@ def test_create_git_remote_repo(
22
23
assert git_remote_1 != git_remote_2
24
25
26
27
@pytest.mark.skipif(not shutil.which("svn"), reason="svn is not available")
28
def test_create_svn_remote_repo(
29
create_svn_remote_repo: CreateRepoPytestFixtureFn,
@@ -35,6 +37,7 @@ def test_create_svn_remote_repo(
35
37
assert svn_remote_1 != svn_remote_2
36
38
39
40
41
def test_plugin(
42
pytester: pytest.Pytester,
43
monkeypatch: pytest.MonkeyPatch,
0 commit comments