Skip to content

Commit

Permalink
Merge pull request #51 from IlyaMuravjov/run-tests-fix
Browse files Browse the repository at this point in the history
Замена py.test на pytest в run_tests, так как pytest 7.2.0 больше не зависит от py
  • Loading branch information
gsvgit committed Nov 10, 2022
2 parents e0e0a2f + cbadfe6 commit ab23682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_tests.py
Expand Up @@ -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__":
Expand Down

0 comments on commit ab23682

Please sign in to comment.