We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7335e0e commit c92ae70Copy full SHA for c92ae70
2 files changed
.github/workflows/test.yaml
@@ -39,8 +39,6 @@ jobs:
39
uses: actions/setup-python@v4
40
with:
41
python-version: ${{ matrix.python }}
42
- - name: Install dependencies
43
- run: pip install tox
44
- name: Run build test target
45
run: |
46
make build-test
Makefile
@@ -41,13 +41,13 @@ docs:
tox -e docs
.PHONY: build-test
-build-test: .tox
+build-test:
rm -rf venv
- $(PY) -m venv venv
+ python3 -m venv venv
47
. venv/bin/activate
48
- $(PY) setup.py sdist
+ python3 setup.py sdist
49
pip install ./dist/juju-${VERSION}.tar.gz
50
- $(PY) -c "from juju.controller import Controller"
+ python3 -c "from juju.controller import Controller"
51
rm ./dist/juju-${VERSION}.tar.gz
52
53
.PHONY: release
0 commit comments