Files
Mike Bayer df899e94cf use nox
The top-level test runner has been changed to use ``nox``, adding a
``noxfile.py`` as well as some included modules.   The ``tox.ini`` file
remains in place so that ``tox`` runs will continue to function in the near
term, however it will be eventually removed and improvements and
maintenance going forward will be only towards ``noxfile.py``.

Change-Id: I66639991e1dc3db582e2ff13f9348a7d6241916e
2025-10-15 14:13:55 -04:00

13 lines
303 B
Python

def warn_tox():
print(
"\n"
+ "=" * 80
+ "\n\033[1;31m ⚠️ NOTE: TOX IS DEPRECATED IN THIS PROJECT! ⚠️"
"\033[0m\n\033[1;33m "
"Please use nox instead for running tests.\033[0m\n" + "=" * 80 + "\n"
)
if __name__ == "__main__":
warn_tox()