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 f58d30b commit 61f4aa8Copy full SHA for 61f4aa8
tests/test_pytest_plugin.py
@@ -9,7 +9,6 @@
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,
@@ -23,7 +22,6 @@ def test_create_git_remote_repo(
23
22
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,
@@ -37,7 +35,6 @@ def test_create_svn_remote_repo(
37
35
assert svn_remote_1 != svn_remote_2
38
36
39
40
41
def test_plugin(
42
pytester: pytest.Pytester,
43
monkeypatch: pytest.MonkeyPatch,
0 commit comments