setup uv for limbo

This commit is contained in:
pedrocarlo 2025-04-03 00:50:54 -03:00
parent 862783aec7
commit 58e091cb23
9 changed files with 239 additions and 13 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3
import os
from test_limbo_cli import TestLimboShell
from cli_tests.test_limbo_cli import TestLimboShell
sqlite_exec = "./scripts/limbo-sqlite3"
sqlite_flags = os.getenv("SQLITE_FLAGS", "-q").split(" ")
@ -588,7 +588,7 @@ def cleanup():
os.remove("testing/vfs.db-wal")
if __name__ == "__main__":
def main():
try:
test_regexp()
test_uuid()
@ -606,3 +606,7 @@ if __name__ == "__main__":
exit(1)
cleanup()
print("All tests passed successfully.")
if __name__ == "__main__":
main()