You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-pytest-xdist
  9. PKG_VERSION:=2.0.0
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=pytest-xdist
  12. PKG_HASH:=3217b1f40290570bf27b1f82714fc4ed44c3260ba9b2f6cde0372378fc707ad3
  13. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
  14. PKG_LICENSE:=MIT
  15. PKG_LICENSE_FILES:=LICENSE
  16. PKG_BUILD_PARALLEL:=0
  17. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm
  18. include ../pypi.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. include ../python3-package.mk
  21. define Package/python3-pytest-xdist
  22. SUBMENU:=Python
  23. SECTION:=lang
  24. CATEGORY:=Languages
  25. TITLE:=Pytest plugin for parallel test running
  26. URL:=https://github.com/pytest-dev/pytest-xdist
  27. DEPENDS:= \
  28. +python3-light \
  29. +python3-pytest \
  30. +python3-pytest-forked \
  31. +python3-execnet \
  32. +python3-six \
  33. +python3-psutil
  34. endef
  35. define Package/python3-pytest-xdist/description
  36. The pytest framework makes it easy to write small tests, yet scales to support
  37. complex functional testing for applications and libraries.
  38. endef
  39. $(eval $(call Py3Package,python3-pytest-xdist))
  40. $(eval $(call BuildPackage,python3-pytest-xdist))
  41. $(eval $(call BuildPackage,python3-pytest-xdist-src))