diff --git a/PKGBUILD b/PKGBUILD index 3285820..f33a3ac 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -54,13 +54,10 @@ package() { check() { cd cli-$pkgver - python -m venv --system-site-packages test-env - # Werkzeug > 2.3.0 breaks tests. Upstream pined it to < 2.1.0: https://github.com/httpie/cli/blob/e52a60e67ca15291c9ab18f395d4d7af3a6204ff/setup.py#L17 - test-env/bin/python -m pip install 'Werkzeug<2.3.0' # The exclude line is taken from Fedora # https://src.fedoraproject.org/rpms/httpie/blob/rawhide/f/httpie.spec - PYTHONDONTWRITEBYTECODE=1 test-env/bin/python -m pytest \ + PYTHONDONTWRITEBYTECODE=1 python -m pytest \ -m 'not requires_installation' \ - -k "not (url_colon_slash_slash_only or quiet_with_check_status_non_zero or (plugins and uninstall) or broken_plugins or existing_and_new_cookies_sent_in_request or stdin_read_warning)" \ + -k "not (stdin_read_warning or compress_form[http] or compress_form[https] or binary_suppresses_when_terminal or binary_suppresses_when_not_terminal_but_pretty or binary_included_and_correct_when_suitable)" \ tests }