summaryrefslogtreecommitdiff
path: root/devel/py-pytest-relaxed
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-pytest-relaxed')
-rw-r--r--devel/py-pytest-relaxed/Makefile27
-rw-r--r--devel/py-pytest-relaxed/distinfo3
-rw-r--r--devel/py-pytest-relaxed/files/patch-tests_test__display.py23
-rw-r--r--devel/py-pytest-relaxed/pkg-descr6
4 files changed, 0 insertions, 59 deletions
diff --git a/devel/py-pytest-relaxed/Makefile b/devel/py-pytest-relaxed/Makefile
deleted file mode 100644
index e9a83c19d882..000000000000
--- a/devel/py-pytest-relaxed/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PORTNAME= pytest-relaxed
-DISTVERSION= 2.0.2
-PORTREVISION= 1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= bofh@FreeBSD.org
-COMMENT= Relaxed test discovery/organization for pytest
-WWW= https://pytest-relaxed.readthedocs.io/
-
-LICENSE= BSD2CLAUSE
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expiring devel/py-pytest4
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest4>=3:devel/py-pytest4@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}six>=1:devel/py-six@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}decorator>=4:devel/py-decorator@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= autoplist distutils pytest
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/devel/py-pytest-relaxed/distinfo b/devel/py-pytest-relaxed/distinfo
deleted file mode 100644
index 25d4af770626..000000000000
--- a/devel/py-pytest-relaxed/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1711809605
-SHA256 (pytest-relaxed-2.0.2.tar.gz) = 956ea028ec30dbbfb680dd8e7b4a7fb8f80a239595e88bace018bf2c0d718248
-SIZE (pytest-relaxed-2.0.2.tar.gz) = 27876
diff --git a/devel/py-pytest-relaxed/files/patch-tests_test__display.py b/devel/py-pytest-relaxed/files/patch-tests_test__display.py
deleted file mode 100644
index 9bfced24100d..000000000000
--- a/devel/py-pytest-relaxed/files/patch-tests_test__display.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Two tests fail when warnings are present in the test run
-# https://github.com/bitprophet/pytest-relaxed/issues/7
-
---- tests/test_display.py.orig 2022-12-17 02:40:44 UTC
-+++ tests/test_display.py
-@@ -18,7 +18,7 @@ def _expect_regular_output(testdir):
- assert "== FAILURES ==" in output
- assert "AssertionError" in output
- # Summary
-- assert "== 1 failed, 4 passed, 1 skipped in " in output
-+ assert "== 1 failed, 4 passed, 1 skipped" in output
-
-
- class TestRegularFunctions:
-@@ -166,7 +166,7 @@ OtherBehaviors
- assert "== FAILURES ==" in output
- assert "AssertionError" in output
- # Summary
-- assert "== 1 failed, 4 passed, 1 skipped in " in output
-+ assert "== 1 failed, 4 passed, 1 skipped" in output
-
- def test_tests_are_colorized_by_test_result(
- self, testdir, environ # noqa: F811,E501
diff --git a/devel/py-pytest-relaxed/pkg-descr b/devel/py-pytest-relaxed/pkg-descr
deleted file mode 100644
index 5f2e68860ea4..000000000000
--- a/devel/py-pytest-relaxed/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-This pytest plugin takes a page from the rest of Python, where you don't
-have to explicitly note public module/class members, but only need to
-hint as to which ones are private.
-
-By default, all files and objects pytest is told to scan will be considered
-tests; to mark something as not-a-test, simply prefix it with an underscore.