mirror of
https://github.com/YusufB5/ASCILINE.git
synced 2026-06-17 22:35:13 +02:00
10 lines
273 B
Python
10 lines
273 B
Python
import py_compile
|
|
from pathlib import Path
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
|
|
|
|
def test_python_entrypoints_compile():
|
|
py_compile.compile(str(ROOT / "stream_server.py"), doraise=True)
|
|
py_compile.compile(str(ROOT / "ascii_video_player2.py"), doraise=True)
|