File: warn_tox.py

package info (click to toggle)
python-dogpile.cache 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 836 kB
  • sloc: python: 6,620; makefile: 159; sh: 104
file content (12 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
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()