Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While working on reproducible builds for openSUSE, I found that our python-pyftpdlib-1.5.6 package failed its tests when built in a 1-core VM.
To reproduce, one can also use
taskset 1 python3 -m pytest
pyftpdlib/test/test_functional.py::TestTimeouts::test_idle_data_timeout2 FAILED [ 18%] pyftpdlib/test/test_functional_ssl.py::TestTimeouts::test_idle_data_timeout2 FAILED [ 35%] pyftpdlib/test/test_functional_ssl.py::TestFtpListingCmdsTLSMixin::test_nlst FAILED [ 46%] pyftpdlib/test/test_functional_ssl.py::TestFtpListingCmdsTLSMixin::test_stat FAILED [ 46%] pyftpdlib/test/test_functional_ssl.py::TestTimeoutsTLSMixin::test_idle_data_timeout2 FAILED [ 48%] self = <pyftpdlib.test.test_functional_ssl.TestFtpListingCmdsTLSMixin testMethod=test_stat> def tearDown(self): close_client(self.client) > self.server.stop() def assert_free_resources(): ts = threading.enumerate() assert len(ts) == 1, ts p = psutil.Process() children = p.children() if children: for p in children: p.kill() p.wait(1) > assert not children, children E AssertionError: [psutil.Process(pid=1364, status='terminated')] ====== 5 failed, 714 passed, 55 skipped, 3 deselected, 1 error in 42.03s =======
The text was updated successfully, but these errors were encountered:
We have occasionally this one in our build system (openSUSE when packaging pyftpdlib for our distribution).
This is complete build log with all details about packages used, steps taken etc.
Sorry, something went wrong.
Update python-pyftpdlib to version 1.5.6 / rev 17 via SR 947432
471c466
https://build.opensuse.org/request/show/947432 by user mcepl + dimstar_suse - Switch off the test suite, it just doesn't work reliably (gh#giampaolo/pyftpdlib#540).
No branches or pull requests
While working on reproducible builds for openSUSE, I found that our python-pyftpdlib-1.5.6 package failed its tests when built in a 1-core VM.
To reproduce, one can also use
The text was updated successfully, but these errors were encountered: