Nicolas Kuttler
Nicolas Kuttler
Should I pull from upstream master and rebase on top? Or add a test somewhere? The change is trivial, please let me know if anything is needed.
@dwoz Is there anything I can do to make the review easier? The failing check seems unrelated.
@garethgreenaway Thanks a lot for looking into this! I think the one check that fails was not related to my latest commit? But the log is a little overwhelming tbh.
Seems like all there is to do for MPDroid is to implement the `find` and `add` methods. The lookup is very dumb at the moment. For `add` I think the...
MPDroid mostly works. There is apparently a glitch with add to queue + clear it. Btw, yes, I only use the queue, that's good enough for MPDroid I think. Other...
I think some crashes are related to a lack of input validation, e.g. newlines in tags or missing modification time for some queries. I hope to get another look next...
@TombusPL Yes, quodlibet could send the quodlibet playlists to the mpd client (I have already written some code related to that). Collections could be added as well I guess, by...
Fwiw, I had the same problem, I'm pretty sure it was caused by running the `tumbler.py` script. Waxwing said on IRC about restoring the fifth depth > technically there are...
Does mutmut attempt to detect test directories? I see https://github.com/boxed/mutmut/blob/master/mutmut/__main__.py#L119 which only seems to find tests in the current directory. Would it not be preferable to use the standard unittest...
Fwiw, using `unittest.TestLoader().discover(path)` or something similar might be preferable to find test dirs. I could look into getting the directories from that.