Skip to content

Commit d0faccf

Browse files
committed
Remove all pytest coverage requirements as I don't care about coverage lol
1 parent bbc94d5 commit d0faccf

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uv venv .venv
2525
source .venv/bin/activate
2626
uv pip install --upgrade pip
27-
uv pip install pytest pytest-cov opencv-python numpy
27+
uv pip install pytest opencv-python numpy
2828
uv pip install -e .
2929
3030
- name: Run tests

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ clean-test: ## remove test and coverage artifacts
4848
rm -fr .pytest_cache
4949

5050
lint: ## check style and lint with ruff
51-
uv pip run ruff check bbox_visualizer demo tests examples
51+
uv run ruff check bbox_visualizer tests examples
5252

5353
format: ## format code with ruff
54-
uv pip run ruff format bbox_visualizer demo tests examples
54+
uv run ruff format bbox_visualizer tests examples
5555

5656
test: ## run tests with pytest
5757
uv pip run pytest

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ dev = [
3838
"hatch>=1.7.0",
3939
"twine>=4.0.2",
4040
"pytest>=7.4.0",
41-
"pytest-cov>=6.0.0",
4241
"ruff>=0.2.1",
4342
]
4443

@@ -85,7 +84,6 @@ exclude = [
8584
]
8685

8786
[tool.pytest.ini_options]
88-
addopts = "--cov=bbox_visualizer"
8987
testpaths = ["tests"]
9088

9189
[tool.ruff]

0 commit comments

Comments
 (0)