tohojo / flent

The FLExible Network Tester.
https://flent.org
Other
439 stars 78 forks source link

Python deprecation fixes #309

Closed tohojo closed 2 months ago

tohojo commented 2 months ago

Setuptools v72 deprecated the 'setup.py test' command, so stop using that for running tests. Instead, execute the 'unittest' module directly, using our protocol to pass the test suite name as an environment variable to the module test loader.

Python 3.12 also deprecated datetime.utc*(), so add our own implementations to continue using them.