git: f7ecd77fc255 - main - devel/py-test-utils: New port: Collection of utility functions and classes for integration tests
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 26 Dec 2023 19:30:08 UTC
The branch main has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=f7ecd77fc255a3c22d46915e450d2f3f4b906eef
commit f7ecd77fc255a3c22d46915e450d2f3f4b906eef
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2023-12-26 18:46:48 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2023-12-26 19:30:03 +0000
devel/py-test-utils: New port: Collection of utility functions and classes for integration tests
---
devel/Makefile | 1 +
devel/py-test-utils/Makefile | 18 ++++++++++++++++++
devel/py-test-utils/distinfo | 3 +++
devel/py-test-utils/pkg-descr | 2 ++
4 files changed, 24 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index a61fd14dbe81..1844258fe2c1 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5689,6 +5689,7 @@
SUBDIR += py-termcolor
SUBDIR += py-termcolor-whl
SUBDIR += py-termstyle
+ SUBDIR += py-test-utils
SUBDIR += py-testfixtures
SUBDIR += py-testinfra
SUBDIR += py-testoob
diff --git a/devel/py-test-utils/Makefile b/devel/py-test-utils/Makefile
new file mode 100644
index 000000000000..619970105be9
--- /dev/null
+++ b/devel/py-test-utils/Makefile
@@ -0,0 +1,18 @@
+PORTNAME= test-utils
+PORTVERSION= 0.1.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= Collection of utility functions and classes for integration tests
+WWW= https://test-utils.readthedocs.io/en/latest/
+
+LICENSE= APACHE20
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-test-utils/distinfo b/devel/py-test-utils/distinfo
new file mode 100644
index 000000000000..00403952bea6
--- /dev/null
+++ b/devel/py-test-utils/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1703616245
+SHA256 (test-utils-0.1.0.tar.gz) = a6fdb375871b43caaa622ae127ecccfdd6713c1d8d8ee789f2484e0ba37f4033
+SIZE (test-utils-0.1.0.tar.gz) = 2998
diff --git a/devel/py-test-utils/pkg-descr b/devel/py-test-utils/pkg-descr
new file mode 100644
index 000000000000..2ec059d64371
--- /dev/null
+++ b/devel/py-test-utils/pkg-descr
@@ -0,0 +1,2 @@
+Python test utils is a collection of different functions and classes which make
+writing integration tests easier.