Date: Wednesday, October 21, 2020 @ 10:10:55 Author: dvzrv Revision: 727828
upgpkg: molecule 3.1.4-1: Upgrade to 3.1.4. Update the ignored tests (location changes and removals). Modified: molecule/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-10-21 10:00:53 UTC (rev 727827) +++ PKGBUILD 2020-10-21 10:10:55 UTC (rev 727828) @@ -1,7 +1,7 @@ # Maintainer: David Runge <[email protected]> pkgname=molecule -pkgver=3.1.3 +pkgver=3.1.4 pkgrel=1 pkgdesc="Aids in the development and testing of Ansible roles" arch=('any') @@ -10,11 +10,11 @@ depends=('ansible' 'python-cerberus' 'python-click' 'python-click-completion' 'python-click-help-colors' 'python-colorama' 'python-cookiecutter' 'python-jinja' 'python-packaging' 'python-paramiko' 'python-pexpect' -'python-pluggy' 'python-selinux' 'python-sh' 'python-tabulate' +'python-pluggy' 'python-rich' 'python-selinux' 'python-sh' 'python-tabulate' 'python-tree-format' 'python-yaml' 'yamllint') makedepends=('python-setuptools-scm' 'python-simplejson') # TODO: python-pytest-plus -checkdepends=('python-ansi2html' 'python-mock' 'python-pytest' +checkdepends=('ansible-lint' 'python-ansi2html' 'python-mock' 'python-pytest' 'python-pytest-cov' 'python-pytest-helpers-namespace' 'python-pytest-html' 'python-pytest-mock' 'python-pytest-verbose-parametrize' 'python-pytest-verbose-parametrize' 'python-pytest-xdist' 'python-testinfra') @@ -24,8 +24,8 @@ 'python-pywinrm: for Windows support' 'python-testinfra: for the testinfra verifier') source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha512sums=('b0a19fc43b01fae51a16f5a6db1f2011377286904fd5a01d46d3a4889bf4ab71cf77c9dab521799c3149b07b8b6f43939bac932104c3faf19ccde76679e4a85b') -b2sums=('ed2b83f889380aa170ed4e7cfe41e0fc541df22305dd39a72b7ff2399154e7c68a899e6176db1f344c0fb183c614992363a892279e626e85fec819f7617929b7') +sha512sums=('b01d72bf0441df98484f813da5ef982efc15842c66782fc8d2709db7997820965c394213e0a1089c97055d4c9242cea8c46f3ea1d3e3acfc0b538c6e85027248') +b2sums=('9f89c6a3ce8d58dd78bb33b21e48a0c46d8512a5b952bd8ec7a2cb01bd638b108dc4c70438735d613c04462c8f94fd5afd4668da1393cec4fbdf5c284c651b39') prepare() { cd "$pkgname-$pkgver" @@ -54,14 +54,10 @@ local python_version="$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')" export PYTHONPATH="${PWD}/test_dir/usr/lib/python${python_version}/site-packages/:${PYTHONPATH}" export PATH="${PWD}/test_dir/usr/bin:${PATH}" - # do not run tests that require interaction with the docker daemon + # do not run functional tests pytest -v \ - --ignore='molecule/test/functional/docker/' \ - --ignore='molecule/test/functional/test_command.py' \ - -k "not test_execute \ - and not test_execute_bakes \ - and not test_execute_bakes_with_ansible_args \ - and not test_executes_cathces_and_exits_return_code_with_stdout" + --ignore='lib/molecule/test/functional/conftest.py' \ + --ignore='lib/molecule/test/functional/test_command.py' } package() {
