diff options
author | Patrick McLean <patrick.mclean@sony.com> | 2019-08-27 14:37:18 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2019-08-27 14:38:28 -0700 |
commit | 2c7bdc17799ac9bc164ff4ec92f7105f3a9d6cad (patch) | |
tree | 7e626473d142b953605151ae1b4d5c6fb9dbc1f4 /app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch | |
parent | gnome-extra/libgsf: bump to 1.14.46 (diff) | |
download | gentoo-2c7bdc17799ac9bc164ff4ec92f7105f3a9d6cad.tar.gz gentoo-2c7bdc17799ac9bc164ff4ec92f7105f3a9d6cad.tar.bz2 gentoo-2c7bdc17799ac9bc164ff4ec92f7105f3a9d6cad.zip |
app-admin/salt: Revbump, update to work with newer deps
Newer pyyaml and jsonschema need patches to pass tests properly.
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch')
-rw-r--r-- | app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch b/app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch new file mode 100644 index 000000000000..d0172d739554 --- /dev/null +++ b/app-admin/salt/files/salt-2019.2.0-skip-tests-that-oom-machine.patch @@ -0,0 +1,20 @@ +diff --git a/tests/unit/modules/test_boto_apigateway.py b/tests/unit/modules/test_boto_apigateway.py +index be26b3f093..ca971556d5 100644 +--- a/tests/unit/modules/test_boto_apigateway.py ++++ b/tests/unit/modules/test_boto_apigateway.py +@@ -169,6 +169,7 @@ def _has_required_botocore(): + return True + + ++@skipIf(True, "Causes machines to OOM") + class BotoApiGatewayTestCaseBase(TestCase, LoaderModuleMockMixin): + conn = None + +@@ -207,6 +208,7 @@ class BotoApiGatewayTestCaseBase(TestCase, LoaderModuleMockMixin): + self.addCleanup(delattr, self, 'conn') + + ++@skipIf(True, "Causes machines to OOM") + class BotoApiGatewayTestCaseMixin(object): + def _diff_list_dicts(self, listdict1, listdict2, sortkey): + ''' |