Add docs and CI/CD workflows

This commit is contained in:
thePR0M3TH3AN
2025-06-19 11:58:39 -04:00
parent f3b27d1148
commit abe95a7edf
9 changed files with 156 additions and 40 deletions

13
tests/test_cli.py Normal file
View File

@@ -0,0 +1,13 @@
import os, sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from voxvera.cli import main
import pytest
def test_help(capsys):
with pytest.raises(SystemExit):
main(["-h"])
captured = capsys.readouterr()
assert "usage:" in captured.out