I'm not very well versed in python toolings so needs double checking, but it seems that the 75.4.0 setuptools update removed support for the test command.
thanks, will look this up as it stands the current packaging workflow doesn't really include unit testing... so doing something quick and simple for this should be no issue
I'm not very well versed in python toolings so needs double checking, but it seems that the 75.4.0 setuptools update removed support for the test command.
It has been deprecated for a while and it should have been removed in a couple days I think (https://github.com/pypa/setuptools/blob/main/setuptools/command/test.py#L14) but I guess it's already gone? Though I couldn't find any clear release notes.
Anyway the setup.py script returns an
error: invalid command 'test'
on my system with setuptools v75.4.0.They apparently recommend some other testing tooling https://setuptools.pypa.io/en/latest/deprecated/commands.html#test-build-package-and-run-a-unittest-suite.