Skip to content

Commit f1aa5ea

Browse files
committed
Fix build-test target
1 parent 67e6a80 commit f1aa5ea

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ docs:
4141
tox -e docs
4242

4343
.PHONY: build-test
44-
build-test:
44+
build-test: .tox
4545
rm -rf venv
46-
python -m venv venv
46+
$(PY) -m venv venv
4747
. venv/bin/activate
4848
$(PY) setup.py sdist
4949
pip install dist/juju-${VERSION}.tar.gz
50-
python3 -c "from juju.controller import Controller"
50+
$(PY) -c "from juju.controller import Controller"
5151
rm dist/juju-${VERSION}.tar.gz
5252

5353
.PHONY: release

0 commit comments

Comments
 (0)