Skip to content

Commit fa1e89f

Browse files
committed
Further invoking of commands through python3
1 parent 62a8086 commit fa1e89f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ clean:
99

1010
.PHONY: coverage
1111
coverage:
12-
pytest -qq
12+
python3 -m pytest -qq
1313
rm -r htmlcov || true
14-
coverage report
14+
python3 -m coverage report
1515

1616
.PHONY: doc
1717
doc:

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# You can set these variables from the command line.
55
SPHINXOPTS =
6-
SPHINXBUILD = sphinx-build
6+
SPHINXBUILD = python3 -m sphinx.cmd.build
77
PAPER =
88
BUILDDIR = _build
99

0 commit comments

Comments
 (0)