Skip to content

Commit

Permalink
Fix build-test target
Browse files Browse the repository at this point in the history
  • Loading branch information
cderici committed Feb 22, 2024
1 parent 67e6a80 commit f1aa5ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ docs:
tox -e docs

.PHONY: build-test
build-test:
build-test: .tox
rm -rf venv
python -m venv venv
$(PY) -m venv venv
. venv/bin/activate
$(PY) setup.py sdist
pip install dist/juju-${VERSION}.tar.gz
python3 -c "from juju.controller import Controller"
$(PY) -c "from juju.controller import Controller"
rm dist/juju-${VERSION}.tar.gz

.PHONY: release
Expand Down

0 comments on commit f1aa5ea

Please sign in to comment.