New review comment by paper42 on void-packages repository https://github.com/void-linux/void-packages/pull/43161#discussion_r1164560205 Comment: that's a harmless warning, there should be no reason to explicitly disable tests, also, we can run at least some tests, it's currently ugly, but it works. ``` checkdepends="python3-pytest python3-flaky ${depends}" do_check() { rm -rf tmp # remove artifacts from previous unsuccessful check run mkdir tmp bsdtar xf dist/pylast-$version-py3-none-any.whl -C tmp PYTHONPATH=tmp pytest rm -rf tmp } ```