mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-22 09:51:08 +00:00
8 lines
118 B
Python
8 lines
118 B
Python
"""The pytest entry point."""
|
|
|
|
import pytest
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(pytest.console_main())
|