diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-10 11:12:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-01-10 11:12:00 +0100 |
commit | b4dd1e0132d3b91125d3d8fc35e8e8510424b724 (patch) | |
tree | c8c7abf69cea8ca1f76d1c28df671bd033a20188 /tests | |
parent | 525855c17b67392e7fa44812fc3f54dc212aec8c (diff) | |
download | slixmpp-b4dd1e0132d3b91125d3d8fc35e8e8510424b724.tar.gz slixmpp-b4dd1e0132d3b91125d3d8fc35e8e8510424b724.tar.bz2 slixmpp-b4dd1e0132d3b91125d3d8fc35e8e8510424b724.tar.xz slixmpp-b4dd1e0132d3b91125d3d8fc35e8e8510424b724.zip |
CI: Skip test if the emoji dep is not here
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_stanza_xep_0444.py | 11 |
1 files 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 = """ <message> <reactions xmlns="urn:xmpp:reactions:0" id="abcd"> |