Sebastian Weigand

Results 135 comments of Sebastian Weigand

@oz123 The problem with macOS and Windows seems to be something on the C level maybe on OpenSSL itself, and I have no idea how to fix it. ``` Windows...

I also did some testing+debugging and found the root of the issue. The problem isn't related to `pytest` or `multiprocessing`/`threading`, but `pyftpdlib` and using multiple instances with different handlers. The...

@akozyreva To validate that the docs I wrote for #138 are working I used the following test script: ```python import pytest from pytest_localftpserver.servers import PytestLocalFTPServer # from mypackage import ftp_copy...

@oz123 Well if one thinks of how an FTP server is run in production it kinda makes sense. There you would put each server configuration in its own life and...

You can try to use session scope, so the server only starts once per test suite run. The problem is most likely that the server from the first module is...

Thanks for raising this issue. This was [already fixed on `main`](https://github.com/glotaran/pyglotaran/commit/7ca64ae0e5c936df6e27532a3e70586ee8a9ab18) when it still was a deprecation warning from `xarray==2024.5.0`. So the next release will fix it. @jsnel Since we...