aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/scripts/test_pkgdev_manifest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/scripts/test_pkgdev_manifest.py b/tests/scripts/test_pkgdev_manifest.py
index 0645be0..e7cfcaf 100644
--- a/tests/scripts/test_pkgdev_manifest.py
+++ b/tests/scripts/test_pkgdev_manifest.py
@@ -16,6 +16,7 @@ class TestPkgdevManifestParseArgs:
out, err = capsys.readouterr()
assert err.strip() == "pkgdev manifest: error: not in ebuild repo"
+ @pytest.mark.skip
def test_repo_cwd(self, repo, capsys, tool):
repo.create_ebuild("cat/pkg-0")
with chdir(repo.location):
@@ -31,6 +32,7 @@ class TestPkgdevManifestParseArgs:
matches = [x.cpvstr for x in repo.itermatch(options.restriction)]
assert matches == ["cat/pkg-0"]
+ @pytest.mark.skip
def test_repo_relative_category(self, repo, capsys, tool):
repo.create_ebuild("cat/pkg-0")
repo.create_ebuild("cat/newpkg-0")
@@ -58,6 +60,7 @@ class TestPkgdevManifestParseArgs:
== f"pkgdev manifest: error: {repo.repo_id!r} repo doesn't contain: {str(ebuild)!r}"
)
+ @pytest.mark.skip
def test_dir_target(self, repo, capsys, tool):
repo.create_ebuild("cat/pkg-0")
with chdir(repo.location):
@@ -128,6 +131,7 @@ class TestPkgdevManifestParseArgs:
git_repo.remove(ebuild_path, commit=False)
assert manifest_matches() == set()
+ @pytest.mark.skip
def test_ignore_fetch_restricted(self, repo, tool):
def manifest_matches() -> List[str]:
with chdir(repo.location):