Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Coverage check #135

Merged
merged 11 commits into from
Feb 14, 2024
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pip install .

- name: Run Unit Tests
run: pytest -n auto tests/unitary/
run: pytest -n auto --cov=boa --cov-report term-missing:skip-covered --cov-fail-under=35 tests/unitary/

integration:
name: "integration tests (forked and networked modes)"
Expand Down
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ mypy
pre-commit
pytest
pytest-xdist
pytest-cov
sphinx-rtd-theme
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies = [
"eth-typing",
"hypothesis",
"pytest",
DanielSchiavini marked this conversation as resolved.
Show resolved Hide resolved
"pytest-cov",
"rich",

# required for forking:
Expand Down
Loading