CI: do not require the emoji package
This commit is contained in:
parent
a61f2248fd
commit
a1ef32a122
@ -43,7 +43,11 @@ class TestReactions(SlixTest):
|
|||||||
|
|
||||||
def testCreateReactionsUnrestricted(self):
|
def testCreateReactionsUnrestricted(self):
|
||||||
"""Testing creating Reactions with the extra all_chars arg."""
|
"""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 = """
|
xmlstring = """
|
||||||
<message>
|
<message>
|
||||||
<reactions xmlns="urn:xmpp:reactions:0" id="abcd">
|
<reactions xmlns="urn:xmpp:reactions:0" id="abcd">
|
||||||
|
Loading…
Reference in New Issue
Block a user