Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,4 @@ jobs:
flags: unittests
name: codecov-${{ matrix.python-version }}
token: ${{ secrets.CODECOV_TOKEN }}
override_commit: ${{ github.event.pull_request.head.sha }}
override_pr: ${{ github.event.number }}
override_branch: ${{ github.head_ref }}
verbose: true
23 changes: 22 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install install-frontend build build-frontend dev dev-backend dev-frontend test test-watch coverage coverage-report lint format format-unsafe clean
.PHONY: install install-frontend build build-frontend dev dev-backend dev-frontend test test-unit test-integration test-db test-network test-cli test-web test-mcp test-watch coverage coverage-report lint format format-unsafe clean

# Install all dependencies
install: install-backend install-frontend
Expand Down Expand Up @@ -31,6 +31,27 @@ dev-frontend:
test:
python3 -m pytest -v

test-unit:
python3 -m pytest tests/unit -v

test-integration:
python3 -m pytest tests/integration -v

test-db:
python3 -m pytest tests/integration/db -v

test-network:
python3 -m pytest tests/integration/network -v

test-cli:
python3 -m pytest tests/integration/cli -v

test-web:
python3 -m pytest tests/integration/web -v

test-mcp:
python3 -m pytest tests/integration/mcp -v

test-watch:
python3 -m pytest -v --watch

Expand Down
4 changes: 4 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ coverage:
default:
target: 80
threshold: 5
patch:
default:
target: 80
threshold: 5

comment:
layout: "reach, diff, flags, files"
Expand Down
Loading