runtests.py 494 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. import sys
  3. def main():
  4. print(
  5. """\nruntests.py support has been removed from Salt. Please try `nox -e '{0}'` """
  6. """or `nox -e '{0}' -- --help` to know more about the supported CLI flags.\n"""
  7. "For more information, please check https://docs.saltstack.com/en/latest/topics/development/tests/index.html#running-the-tests".format(
  8. "pytest-zeromq-3"
  9. ),
  10. file=sys.stderr,
  11. )
  12. if __name__ == "__main__":
  13. main()