CI: do not require the emoji package
This commit is contained in:
parent
a61f2248fd
commit
a1ef32a122
1 changed files with 5 additions and 1 deletions
|
@ -43,7 +43,11 @@ class TestReactions(SlixTest):
|
|||
|
||||
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">
|
||||
|
|
Loading…
Reference in a new issue