New comment by paper42 on void-packages repository https://github.com/void-linux/void-packages/pull/34490#issuecomment-991901287 Comment: > When I got the tests running with their deps installed and pytest it still says: > > ``` > WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for a generic test entry point independent of test runner are encouraged to use tox > ``` That's a message from `setup.py test` which is deprecated. We should use pytest if possible: ```sh checkdepends="python3-pytest $depends" ``` But it seems like there is a lot of tests and we will need to skip some of them or skip them anyway. Even if you decide it's not worth fixing them (which I think might be ok in this case), the reason for this should be modified.