On Thu, 10 Dec 2020 20:03:18 +0100 Christian Kastner wrote: > > I: pybuild base:232: cd > > /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_mitmproxy/build; python3.9 -m pytest > > "-k-TestHARDump -k-TestScripts -k-test_mitmweb -k-test_mitmdump > > -k-TestDaemonSSL -k-test_tcp -k-TestHTTPS -k-TestMasterSecretLogger > > -k-test_get_version" > > ERROR: Wrong expression passed to '-k': not TestHARDump -k-TestScripts > > -k-test_mitmweb -k-test_mitmdump -k-TestDaemonSSL -k-test_tcp -k- By the way: I required a local rebuild of python-pytest-asyncio for this to work, but the fix (replacing "-" with "not" in the above expressions) should work with the versions in unstable, too.
eg: -k "not test_mitmweb" instead of -k-test_mitmweb.

