Merge branch 'no-emoji-required' into 'master'
CI: do not require the emoji package See merge request poezio/slixmpp!81
This commit is contained in:
commit
340b0f0f16
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