[arch-commits] Commit in molecule/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Fri Feb 12 19:50:22 UTC 2021


    Date: Friday, February 12, 2021 @ 19:50:22
  Author: dvzrv
Revision: 856993

upgpkg: molecule 3.2.3-1: Upgrade to 3.2.3.

Update to current set of depends.
Remove filterwarnings pytest option, which raises warnings as errors and
leads to a failed test suite: https://github.com/ansible-community/molecule/issues/3004
Include previously disabled tests (due to the pytest filter issue).

Modified:
  molecule/trunk/PKGBUILD

----------+
 PKGBUILD |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-02-12 19:47:11 UTC (rev 856992)
+++ PKGBUILD	2021-02-12 19:50:22 UTC (rev 856993)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge <dvzrv at archlinux.org>
 
 pkgname=molecule
-pkgver=3.2.0
+pkgver=3.2.3
 pkgrel=1
 pkgdesc="Aids in the development and testing of Ansible roles"
 arch=('any')
@@ -10,8 +10,8 @@
 depends=('ansible' 'python-cerberus' 'python-click' 'python-click-completion'
 'python-click-help-colors' 'python-cookiecutter' 'python-enrich' 'python-jinja'
 'python-packaging' 'python-paramiko' 'python-pluggy' 'python-rich'
-'python-selinux' 'python-subprocess-tee' 'python-sh' 'python-tabulate'
-'python-tree-format' 'python-yaml' 'yamllint')
+'python-selinux' 'python-setuptools' 'python-subprocess-tee' 'python-yaml'
+'yamllint')
 makedepends=('python-setuptools-scm' 'python-simplejson')
 checkdepends=('ansible-lint' 'python-ansi2html' 'python-mock' 'python-pexpect'
 'python-pytest' 'python-pytest-helpers-namespace' 'python-pytest-html'
@@ -24,13 +24,17 @@
             'python-pywinrm: for Windows support'
             'python-pytest-testinfra: for the testinfra verifier')
 source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-sha512sums=('3dc25f910d1b12659267c8acac404c1a23fb54cb54c134f6cc649305b87ed8419792b7446bf5b38d83665f00bfa570e2667dbb2b47cf41d7018cef3911d25a29')
-b2sums=('34db52d36a4085ac23287b824be50b02cad9e8d6defc25c8f39e47c063c1654ec6320ebd32952d52fbd85255a1c32c2dfb28b3fb11c01910d91a9cc084e75099')
+sha512sums=('9f3a0f8e71312bf9eb44cc1c6edab3e9dc8fd7806c03df7d3b5b9a4d35fb2c057b5b4ad0b780f6602c8f0e7ac13122a4985c434b4e1f58d58b046d48609b0329')
+b2sums=('9edad57b7964b0a1451fff5cebe8247c5025f3d2631ab6808d2e453d8cb8dbc246b274a9ff24a7521f3848206e14573536663a19ae5234c9eb31b1238830e995')
 
 prepare() {
   cd "$pkgname-$pkgver"
   # remove additional pytest options
-  sed -e '/addopts/d' -i setup.cfg
+  # remove fitler to raise warnings as errors: https://github.com/ansible-community/molecule/issues/3004
+  sed -e '/addopts/d' \
+      -e '/testpaths/d' \
+      -e '/error/d' \
+      -i setup.cfg
 }
 
 build() {
@@ -52,11 +56,7 @@
   export PYTHONPATH="${PWD}/${_test_dir}/usr/lib/python${_python_version}/site-packages/:${PYTHONPATH}"
   export PATH="${PWD}/test_dir/usr/bin:${PATH}"
 
-  # skip collection of broken pkg_resources tests: https://github.com/ansible-community/molecule/issues/3004
-  pytest -v \
-         --ignore="${_test_dir}/usr/lib/python${_python_version}/site-packages/molecule/test/unit/command/test_converge.py" \
-         --ignore="${_test_dir}/usr/lib/python${_python_version}/site-packages/molecule/test/unit/test_shell.py" \
-         "${_test_dir}/usr/lib/python${_python_version}/site-packages/molecule/test/unit/"
+  pytest -v "${_test_dir}/usr/lib/python${_python_version}/site-packages/molecule/test/unit/"
 }
 
 package() {



More information about the arch-commits mailing list