Files

7 lines
208 B
Bash
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
#!/bin/bash
python -m venv server_ci/.venv && \
source server_ci/.venv/bin/activate && \
pip install . && \
pip install -r server_ci/requirements.txt && \
server_ci/.venv/bin/pytest server_ci/tests || exit 1