diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-10-14 08:11:10 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-10-14 08:22:02 +0300 |
commit | 37dd5ecfaae867350ccc22d12a28e13d00c17f0b (patch) | |
tree | 212494fe62f60acbdca16fa125fa1bb080dcd24b /dev-python/SaltTesting/files | |
parent | dev-python/trimesh: Bump to 3.15.5 (diff) | |
download | gentoo-37dd5ecfaae867350ccc22d12a28e13d00c17f0b.tar.gz gentoo-37dd5ecfaae867350ccc22d12a28e13d00c17f0b.tar.bz2 gentoo-37dd5ecfaae867350ccc22d12a28e13d00c17f0b.zip |
dev-python/SaltTesting: treeclean
Closes: https://bugs.gentoo.org/747997
Closes: https://bugs.gentoo.org/832242
Closes: https://bugs.gentoo.org/869503
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/SaltTesting/files')
-rw-r--r-- | dev-python/SaltTesting/files/SaltTesting-2018.9.21-python37.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-python/SaltTesting/files/SaltTesting-2018.9.21-python37.patch b/dev-python/SaltTesting/files/SaltTesting-2018.9.21-python37.patch deleted file mode 100644 index b12d4231bbd8..000000000000 --- a/dev-python/SaltTesting/files/SaltTesting-2018.9.21-python37.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/salttesting/case.py b/salttesting/case.py -index 4918915..19e47cc 100644 ---- a/salttesting/case.py -+++ b/salttesting/case.py -@@ -140,14 +140,14 @@ class ShellTestCase(TestCase, AdaptedConfigurationTestCaseMixIn): - ) - return self.run_script('salt-ssh', arg_str, with_retcode=with_retcode, catch_stderr=catch_stderr, raw=True) - -- def run_run(self, arg_str, with_retcode=False, catch_stderr=False, async=False, timeout=60, config_dir=None): -+ def run_run(self, arg_str, with_retcode=False, catch_stderr=False, async_flag=False, timeout=60, config_dir=None): - ''' - Execute salt-run - ''' - arg_str = '-c {0}{async_flag} -t {timeout} {1}'.format(config_dir or self.get_config_dir(), - arg_str, - timeout=timeout, -- async_flag=' --async' if async else '') -+ async_flag=' --async' if async_flag else '') - return self.run_script('salt-run', arg_str, with_retcode=with_retcode, catch_stderr=catch_stderr) - - def run_run_plus(self, fun, *arg, **kwargs): |