mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-06 08:56:51 -04:00
df899e94cf
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
13 lines
303 B
Python
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()
|