Skip to content

Commit bb32ce9

Browse files
committed
fix: update Makefile commands for consistency and clarity
1 parent 34d99a5 commit bb32ce9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ help:
1414
@echo " make help - this message$(BLACK)"
1515

1616
test:
17-
pytest
17+
python -m pytest
1818

1919
coverage:
20-
coverage run --source='machinevisiontoolbox' -m pytest
20+
coverage run --source='src/machinevisiontoolbox' -m pytest
2121
coverage report
2222
coverage html
23-
open htmlcov/index.html
23+
open -a Safari htmlcov/index.html
2424

2525
docs: .FORCE
26-
(cd docs; make html)
26+
(cd docs; make html O="-w warnings.txt")
2727

2828
view: .FORCE
29-
open docs/build/html/index.html
29+
open -a Safari docs/build/html/index.html
3030

3131
dist: .FORCE
3232
# $(MAKE) test

0 commit comments

Comments
 (0)