From b4dd1e0132d3b91125d3d8fc35e8e8510424b724 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 10 Jan 2021 11:12:00 +0100 Subject: CI: Skip test if the emoji dep is not here --- tests/test_stanza_xep_0444.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/test_stanza_xep_0444.py b/tests/test_stanza_xep_0444.py index 276460c5..0fe3f6fc 100644 --- a/tests/test_stanza_xep_0444.py +++ b/tests/test_stanza_xep_0444.py @@ -13,6 +13,11 @@ from slixmpp.plugins.xep_0444 import XEP_0444 import slixmpp.plugins.xep_0444.stanza as stanza from slixmpp.xmlstream import register_stanza_plugin +try: + import emoji +except ImportError: + emoji = None + class TestReactions(SlixTest): @@ -41,13 +46,9 @@ class TestReactions(SlixTest): self.assertEqual({'😃', '🤗'}, msg['reactions']['values']) + @unittest.skipIf(emoji is None, 'Emoji package not installed') def testCreateReactionsUnrestricted(self): """Testing creating Reactions with the extra all_chars arg.""" - try: - import emoji - except ImportError: - # No emoji package: this test does not make sense - return xmlstring = """ -- cgit v1.2.3