diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-06 17:27:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-06 18:38:50 +0200 |
commit | f248e1d016be0147166c0e91f9e43ca7513be6bc (patch) | |
tree | 377f122b0553f3dcb5c4ff282a6dbf1f7861e76b /app-admin | |
parent | thirdpartymirrors: gentoo: add ftp.fau.de (diff) | |
download | gentoo-f248e1d016be0147166c0e91f9e43ca7513be6bc.tar.gz gentoo-f248e1d016be0147166c0e91f9e43ca7513be6bc.tar.bz2 gentoo-f248e1d016be0147166c0e91f9e43ca7513be6bc.zip |
app-admin/awscli: Disable pytest plugin autoloading
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/awscli/awscli-1.29.40.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-admin/awscli/awscli-1.29.40.ebuild b/app-admin/awscli/awscli-1.29.40.ebuild index 62c19f3a63fb..612e893b5bef 100644 --- a/app-admin/awscli/awscli-1.29.40.ebuild +++ b/app-admin/awscli/awscli-1.29.40.ebuild @@ -64,8 +64,11 @@ python_test() { tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 # integration tests require AWS credentials and Internet access - epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked + epytest tests/{functional,unit} \ + -p xdist -n "$(makeopts_jobs)" \ + -p pytest_forked --forked } python_install_all() { |