From cbadfe663cc36c32709d51ef0b15d8b340cc6be6 Mon Sep 17 00:00:00 2001 From: ilya Date: Fri, 28 Oct 2022 01:00:30 +0300 Subject: [PATCH] Replace py.test with pytest --- scripts/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 28a16a0b9..b30811d9e 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -4,7 +4,7 @@ def main(): shared.configure_python_path() - subprocess.check_call(["python", "-m", "py.test", "-vv", "-s", shared.TESTS]) + subprocess.check_call(["python", "-m", "pytest", "-vv", "-s", shared.TESTS]) if __name__ == "__main__":