summaryrefslogtreecommitdiff
path: root/src/pytest/__main__.py
blob: 25b1e45b89d593b8bb2fef941b3917f7ab8bea2c (plain)
1
2
3
4
5
6
7
"""
pytest entry point
"""
import pytest

if __name__ == "__main__":
    raise SystemExit(pytest.console_main())