salt/tests/runtests.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
512 B
Python
Raw Normal View History

#!/usr/bin/env python
2015-01-07 01:15:56 +00:00
import sys
2020-04-02 20:10:20 -05:00
def main():
print(
2021-08-03 08:40:21 +01:00
"\nruntests.py support has been removed from Salt. Please try `nox -e"
" 'pytest-3(coverage=True)'` "
"or `nox -e 'pytest-3(coverage=True)' -- --help` to know more about the"
" supported CLI flags.\n"
"For more information, please check"
" https://docs.saltproject.io/en/latest/topics/development/tests/index.html#running-the-tests",
file=sys.stderr,
)
if __name__ == "__main__":
main()