devel/py-spyder-unittest: New port: Plugin to run tests from within the Spyder IDE

This commit is contained in:
Yuri Victorovich 2023-01-11 18:02:04 -08:00
parent 2019a50e5f
commit c91d99603b
4 changed files with 33 additions and 0 deletions

View File

@ -5397,6 +5397,7 @@
SUBDIR += py-speaklater
SUBDIR += py-speg
SUBDIR += py-spyder-kernels
SUBDIR += py-spyder-unittest
SUBDIR += py-squint
SUBDIR += py-sre-yield
SUBDIR += py-srsly

View File

@ -0,0 +1,23 @@
PORTNAME= spyder-unittest
DISTVERSION= 0.5.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:S/-/_/}-${DISTVERSION}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Plugin to run tests from within the Spyder IDE
WWW= https://github.com/spyder-ide/spyder-unittest
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyzmq>=0:net/py-pyzmq@${PY_FLAVOR}
USES= python:3.5+
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1673485455
SHA256 (spyder_unittest-0.5.1.tar.gz) = 91822efe7b665b92ad999dd34bcb4eb4b1e4eb5785ef792a8a11076a52347e2d
SIZE (spyder_unittest-0.5.1.tar.gz) = 50927

View File

@ -0,0 +1,6 @@
Spyder-unittest is a plugin that integrates popular unit test frameworks with
Spyder, allowing you to run test suites and view the results in the IDE.
The plugin supports the unittest module in the Python standard library as well
as the pytest and nose testing frameworks. Support for pytest is most complete
at the moment.