Spaces:
Running
Running
| from pathlib import Path | |
| import ast | |
| root = Path(__file__).resolve().parents[1] | |
| ast.parse((root / "app.py").read_text(encoding="utf-8")) | |
| assert (root / "requirements.txt").exists() | |
| assert not (root / "models").exists() | |
| assert not (root / "data").exists() | |
| print("smoke_test: OK") | |