[13:02:34] I have some tests on ProofreadPage which add pages to the database with "doUserEditContent". However, the ProofreadPage-specific DB updates do not seem to run after that, so the tests fail [13:02:55] is there something I should be doing to trigger a job or something like that after I issue "doUserEditContent"? [13:05:10] the code in question is here: https://gerrit.wikimedia.org/r/c/mediawiki/extensions/ProofreadPage/+/699086 [13:05:37] and you can provoke failed tests with: php tests/phpunit/phpunit.php extensions/ProofreadPage/tests/phpunit/lualib [18:15:03] Hi everyone. We're currently using an extension that compresses and converts uploads by very non-techy users (e.g. converting a bmp or tiff to png, which saves a ton of space). We now noticed that it doesn't play well with another extension. Looking into this, it seems that's because the compression and converting is happening on the UploadForm:BeforeProcessing Hook, and the new extension uses the upl [18:15:09] oad API instead of the upload form. It seems however that the hooks the API calls don't allow for renaming a file after conversion, which is a problem when converting one image format to another. Did we miss some kind of hook that does allow this, is this a bug, is it intended behaviour, or what do people here think?