apteryks
apteryks
I suspect Void Linux, like GNU Guix, is not a systemd distribution. On GNU Guix the udev tests fail like so: ``` $ pytest -vv -k 'test_hwdb_files[tablet0]' test/test_udev_rules.py =============================================================================================== test...
After turning the missing commands in the `system_reload` fixture to `true` to neutralize them, all the udev tests were skipped. Removing the exception handling, this is the reason: ``` test/test_udev_rules.py::test_hwdb_files[tablet0]...
@whot sorry for being unclear, I was experimenting and had removed the exception handling to see what the exceptions were, curious to see if I could get the test to...
OK, about the test being skipped, there is an error after all when not patching anything: ``` building /gnu/store/9ayyjrxsrs1ac076qq772qwamw4v7dyp-baobab-42.0.drv... 6/12 accountsservice:accounts-service+libaccountsservice+TestAccountsService / TestAccountsService.test_delete_non_existent_user OK 5.73s derivation '/gnu/store/3bjcsygshjc3h14vin5q9k2180f0nyka-libwacom-2.4.0.drv' offloaded to 'localhost'...
Here's what the failure looks like when I remove my patch: ``` test/test_udev_rules.py::test_hwdb_files[tablet0] ERROR [ 78%] ==================================== ERRORS ==================================== __________________ ERROR at setup of test_hwdb_files[tablet0] __________________ @pytest.fixture(scope='session', autouse=True) def systemd_reload():...
I had this issue in GNU Guix as well, trying to bootstrap Rust 1.29.2. It turns out that the issue is `src/librustc_codegen_llvm/back/link.rs`, which looks for `cc` on the PATH. The...
Hi; this is what the PyPI archive contains: ``` $ wget https://files.pythonhosted.org/packages/32/2c/c813f0576c8557ee50b9ecf54ba6c9a58b8cb3e7ca7109ca9fb37a56f4c3/warcio-1.7.4.tar.gz --2021-08-26 13:16:34-- https://files.pythonhosted.org/packages/32/2c/c813f0576c8557ee50b9ecf54ba6c9a58b8cb3e7ca7109ca9fb37a56f4c3/warcio-1.7.4.tar.gz Resolving files.pythonhosted.org (files.pythonhosted.org)... 151.101.137.63, 2a04:4e42:20::319 Connecting to files.pythonhosted.org (files.pythonhosted.org)|151.101.137.63|:443... connected. HTTP request sent, awaiting response......
I think the issue I saw was that the tests appear to be *partially* included in the release archive; if the tests are explicitly excluded, that's OK, but they should...
For some reason, I'm triggering this easily on my setup, attempting to package this for GNU Guix. It hangs while running its own test suite. The deadlock happens both in...
I suspect multiprocessing.SimpleQueue never received the fix mentioned above that was made against queue.SimpleQueue, looking at CPython's source.