Andreas Motl

Results 1530 comments of Andreas Motl

Another fluke on PyPy 3.9 with #690. ``` ________________________ test_plugin_fcm_general_oauth _________________________ # Test our call count > assert mock_post.call_count == 0 E AssertionError: assert 1 == 0 E + where...

Dear Chris, thanks for your response. > I applaud your efforts to improve the CI and testing. Thank you, I appreciate it. > As discussed earlier, I personally believe the...

#697 is out of the loop, sorry for the noise. So, let's follow your proposal and keep the `bare` runner for that purpose? On the other details, I am not...

PyPy 3.6 strikes again with #698. Another apparent mixup between NotifyMSTeams vs. NotifyMatrix here, no? ```python ________________________ test_plugin_msteams_templating ________________________ [...] assert mock_post.called is True > assert mock_post.call_args_list[0][0][0].startswith( 'https://outlook.office.com/webhook/') E AssertionError:...

> Your amazing and growing merge request has gotten so big (with so many fine little fixes in it), it's hard to see where/what is triggering some of these now...

Another fluke on PyPy 3.9, on behalf of #700. ``` ________________________ test_plugin_fcm_general_oauth _________________________ # Now we test using a valid Project ID and data parameters obj = Apprise.instantiate( 'fcm://mock-project-id/device/#topic/?keyfile={}' '&+key=value&+key2=value2'...

Some mocking problems on PyPy 3.6 with `test_plugin_twitter_dm_attachments` (`test/test_plugin_twitter.py:584`), on behalf of #702. https://github.com/caronc/apprise/actions/runs/3271649948/jobs/5381689500#step:10:535

On behalf of #707, this guy failed on CPython 3.9 on Windows. ``` ______________________________ test_notify_base _______________________________ > assert elapsed > 0.5 and elapsed < 1.5 E assert (0.4999514000000005 > 0.5)...

PyPy 3.8 on behalf of #707. ```python ________________________ test_plugin_fcm_general_oauth _________________________ mock_post.reset_mock() obj = Apprise.instantiate( 'fcm://mock-project-id/device/?keyfile={}' '&color=#12AAbb'.format(str(path))) > assert mock_post.call_count == 0 E AssertionError: assert 1 == 0 E + where...

PyPy 3.9 on behalf of #707. Two in one. ``` FAILED test/test_plugin_msteams.py::test_plugin_msteams_templating - Assertio... FAILED test/test_plugin_twitter.py::test_plugin_twitter_tweet_attachments - S... ``` #### test_plugin_msteams_templating ``` ________________________ test_plugin_msteams_templating ________________________ > assert mock_post.call_args_list[0][0][0].startswith( 'https://outlook.office.com/webhook/') E...