Andreas Motl

Results 1497 comments of Andreas Motl

Another fluke on PyPy 3.9 on behalf of #707. It already happened at https://github.com/caronc/apprise/issues/692#issuecomment-1279804283 and a different one at https://github.com/caronc/apprise/issues/692#issuecomment-1279804283. ``` ________________________ test_plugin_fcm_general_oauth _________________________ # Test our call count >...

Thanks for reporting. I see that both `test_plugin_pushover_attachments` and `test_plugin_fcm_general_oauth` strike again, and again on PyPy. To be more specific, we did not see a fluke on `test_plugin_pushover_attachments` yet, but...

Another fluke on PyPy 3.9 on behalf of #727. It is `test_plugin_fcm_general_oauth` again. ``` ________________________ test_plugin_fcm_general_oauth _________________________ # Test our call count > assert mock_post.call_count == 0 E AssertionError: assert...

PyPy 3.6 failed on `test_plugin_twitter_tweet_attachments` again, on behalf of #727. ``` # Send our notification (again); this time there willb e more tweet logging > assert obj.notify( body='body', title='title', notify_type=NotifyType.INFO,...

`test_plugin_twitter_dm_attachments` and `test_plugin_twitter_tweet_attachments` are the most prominent causes for failed test runs on CI, having been observed at [1]. I started to refactor the test cases with #728, in order...

On behalf of #728, when refactoring the test cases, we observed this one on PyPy3.8 at [1]: ```python test/test_plugin_twitter.py::test_plugin_twitter_tweet_attachments_bad_media_response_unparseable /opt/hostedtoolcache/PyPy/3.8.13/x64/lib/pypy3.8/site-packages/_pytest/unraisableexception.py:78: PytestUnraisableExceptionWarning: : Traceback (most recent call last): File "/home/runner/work/apprise/apprise/apprise/plugins/NotifyTwist.py", line...

On behalf of #728, PyPy3.8 strikes again. ``` ________________________ test_plugin_fcm_general_oauth _________________________ > assert mock_post.call_count == 2 E AssertionError: assert 3 == 2 E + where 3 = .call_count test/test_plugin_fcm.py:514: AssertionError...

On PyPy3.8 again, with the refactorings from #728. ``` ________________ test_plugin_fcm_keyfile_parse_keyfile_failures ________________ > assert mock_post.call_count == 0 E AssertionError: assert 1 == 0 E + where 1 = .call_count test/test_plugin_fcm.py:713:...

PyPy3.9 and PyPy3.8 again, also with the refactorings from #728. ``` ____________ test_plugin_twitter_dm_attachments_invalid_attachment _____________ # No post request as attachment is not good. > assert mock_post.call_count == 0 E AssertionError:...

I've refactored the test modules `test_plugin_twitter`, `test_plugin_fcm`, `test_plugin_msteams` a bit. Let's see how this story continues after integrating #728.