Spaces:
Sleeping
Sleeping
File size: 279 Bytes
2d17f3d | 1 2 3 4 5 6 7 8 9 10 | 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")
|