Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages /
python-aws-sam-translator
Commits:
4a11312c by Jakub Klinkovský at 2025-12-21T11:45:23+01:00
Improve output from tests and ignore tests failing due to UserWarning
- - - - -
1 changed file:
- PKGBUILD
Changes:
=====================================
PKGBUILD
=====================================
@@ -47,9 +47,14 @@ build() {
}
check() {
+ local pytest_options=(
+ -vv
+ -W ignore::UserWarning
+ -n auto
+ --override-ini="addopts="
+ )
cd $_pkgname-$pkgver
- AWS_DEFAULT_REGION=us-east-1 PYTHONPATH="$PWD" pytest tests \
- -n auto --override-ini="addopts="
+ AWS_DEFAULT_REGION=us-east-1 PYTHONPATH="$PWD" pytest "${pytest_options[@]}"
tests
}
package() {
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-aws-sam-translator/-/commit/4a11312ce0075fe3553eb7fa969b0bcb9c1790c5
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-aws-sam-translator/-/commit/4a11312ce0075fe3553eb7fa969b0bcb9c1790c5
You're receiving this email because of your account on gitlab.archlinux.org.