mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-08 11:11:24 +00:00
10 lines
154 B
Python
10 lines
154 B
Python
"""The pytest entry point."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(pytest.console_main())
|