Files
pytest2/testing/freeze/runtests_script.py
Bruno Oliveira 8b54596639 Run pre-commit on all files
Running pre-commit on all files after replacing reorder-python-imports by isort.
2024-01-30 16:35:46 -03:00

12 lines
193 B
Python

"""
This is the script that is actually frozen into an executable: simply executes
pytest main().
"""
if __name__ == "__main__":
import sys
import pytest
sys.exit(pytest.main())