Compare commits
27 Commits
dependabot
...
2023.2
Author | SHA1 | Date | |
---|---|---|---|
|
a31045874e | ||
|
25724ef729 | ||
|
46458bf5eb | ||
|
cd6602882c | ||
|
786f746958 | ||
|
c4482d56ab | ||
|
9a46613975 | ||
|
8e8f71ade5 | ||
|
149539d3f9 | ||
|
77826ebf78 | ||
|
5c571f565f | ||
|
178e5a195a | ||
|
9adce8d167 | ||
|
ec7d663496 | ||
|
a56465e049 | ||
|
851d1e9da1 | ||
|
59cfde3767 | ||
|
c53ff94b8e | ||
|
03256fc776 | ||
|
19b3669d97 | ||
|
6841bdaa81 | ||
|
8e101a9f1c | ||
|
0680ca2fe8 | ||
|
d0456b698c | ||
|
f3085443d5 | ||
|
958a4565db | ||
|
2403a03fcb |
@@ -1,5 +1,5 @@
|
|||||||
""" Freqtrade bot """
|
""" Freqtrade bot """
|
||||||
__version__ = '2023.2.dev'
|
__version__ = '2023.2'
|
||||||
|
|
||||||
if 'dev' in __version__:
|
if 'dev' in __version__:
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
@@ -356,6 +356,14 @@ def test_exception_send_msg(default_conf, mocker, caplog):
|
|||||||
}
|
}
|
||||||
webhook.send_msg(msg)
|
webhook.send_msg(msg)
|
||||||
|
|
||||||
|
# Test no failure for not implemented but known messagetypes
|
||||||
|
for e in RPCMessageType:
|
||||||
|
msg = {
|
||||||
|
'type': e,
|
||||||
|
'status': 'whatever'
|
||||||
|
}
|
||||||
|
webhook.send_msg(msg)
|
||||||
|
|
||||||
|
|
||||||
def test__send_msg(default_conf, mocker, caplog):
|
def test__send_msg(default_conf, mocker, caplog):
|
||||||
default_conf["webhook"] = get_webhook_dict()
|
default_conf["webhook"] = get_webhook_dict()
|
||||||
|
Reference in New Issue
Block a user