From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Fri, 30 Dec 2022 12:24:00 +0100
Subject: tests: Don try to download packages

Forwarded: Not-Needed
---
 tests/test_formats.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/test_formats.py b/tests/test_formats.py
index 5bcea21..e11ddf7 100644
--- a/tests/test_formats.py
+++ b/tests/test_formats.py
@@ -395,6 +395,7 @@ class TestClassifiers:
         assert isinstance(classifiers, str)
         assert bytes(classifiers, "utf-8")
 
+    @pytest.mark.skip(reason="no downloads allowed while package build")
     def test_downloaded(self, monkeypatch):
         if os.name != "posix":
             # Mock on Windows (problems with SSL)
@@ -452,6 +453,7 @@ class TestClassifiers:
         assert not validator.downloaded
 
 
+@pytest.mark.skip(reason="no downloads allowed while package build")
 def test_private_classifier():
     assert formats.trove_classifier("private :: Keep Off PyPI") is True
     assert formats.trove_classifier("private:: Keep Off PyPI") is False
