File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 24
24
uv venv .venv
25
25
source .venv/bin/activate
26
26
uv pip install --upgrade pip
27
- uv pip install pytest pytest-cov opencv-python numpy
27
+ uv pip install pytest opencv-python numpy
28
28
uv pip install -e .
29
29
30
30
- name : Run tests
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ clean-test: ## remove test and coverage artifacts
48
48
rm -fr .pytest_cache
49
49
50
50
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
52
52
53
53
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
55
55
56
56
test : # # run tests with pytest
57
57
uv pip run pytest
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ dev = [
38
38
" hatch>=1.7.0" ,
39
39
" twine>=4.0.2" ,
40
40
" pytest>=7.4.0" ,
41
- " pytest-cov>=6.0.0" ,
42
41
" ruff>=0.2.1" ,
43
42
]
44
43
@@ -85,7 +84,6 @@ exclude = [
85
84
]
86
85
87
86
[tool .pytest .ini_options ]
88
- addopts = " --cov=bbox_visualizer"
89
87
testpaths = [" tests" ]
90
88
91
89
[tool .ruff ]
You can’t perform that action at this time.
0 commit comments