Andrzej Klajnert
Andrzej Klajnert
Thanks for reporting, I'll try to reproduce this error during the weekend, but I'm not sure if I'll have enough time for that. If you can, please prepare a complete...
Sorry @mpagot, but I'm not able to reproduce this issue. Here's how I've tried it: ```python COMMAND = ["dosomething", "/mytmp"] def subprocess_calling_function(command): subprocess.call(command) def test_mock_interference(fp): fp.allow_unregistered(False) fp.register(COMMAND) with mock.patch.dict(os.environ, {"MYSCRIPT_TMP_FOLDER":...
Closing this issue as it cannot be reproduced. Feel free to reopen when you'll be able to provide a method to reproduce this problem.
These tests fail because you don't have `python` on your machine - probably it is `python3`. A lot of tests have two variants - run the faked subprocess and run...
Huh, that's a great idea, I didn't consider it before. I'll fix these tests when I'll find some time. Feel free to submit a PR for it if you like.
@kloczek - I've changed `"python"` to `sys.executable` in the tests. It should work fine now. Let me know if it doesn't for some reason.
You need `pytest-rerunfailures `, not `flaky `. All the dependencies you need are in `setup.py`.
Ah, the warning is also on CI. I've missed it. Let me reopen this issue, and fix this later.
Looks good, except warnings. I'll deal with them later.
Hi @bluetech, thanks for the hints. Fair point about the symlink to symlink case, I'll work on it later.