__main__.py 154 B

123456789
  1. """The pytest entry point."""
  2. from __future__ import annotations
  3. import pytest
  4. if __name__ == "__main__":
  5. raise SystemExit(pytest.console_main())