Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -44,12 +44,12 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install gmssl
pip install pytest gmssl
pip install pytest pytest-cov gmssl

- name: Run unit tests
- name: Run unit tests with coverage
run: |
export PYTHONPATH="${GITHUB_WORKSPACE}:${PYTHONPATH}"
pytest tests/unit/ -v
pytest tests/unit/ -v --cov=core --cov=infrastructure --cov-report=term-missing --cov-fail-under=5

build-check:
name: Build Check
Expand Down
Loading