2011-12-22 02:36:26 +01:00
|
|
|
#!/usr/bin/env python
|
2015-01-07 01:15:56 +00:00
|
|
|
|
2017-02-09 18:03:20 +00:00
|
|
|
import sys
|
2020-04-02 20:10:20 -05:00
|
|
|
|
2017-02-27 13:58:07 +00:00
|
|
|
|
2020-09-03 09:56:33 +01: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",
|
2020-09-03 09:56:33 +01:00
|
|
|
file=sys.stderr,
|
|
|
|
)
|
2013-06-24 19:37:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|