Skip to content

Commit 3d7af12

Browse files
Start to run integration tests individually
The integration tests will be better served if they're run individually so we can try and get the signal to noise ratio lower.
1 parent 81d22c1 commit 3d7af12

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ client:
2020
$(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/
2121

2222
.PHONY: test
23-
test:
24-
tox
23+
test: lint
24+
tox -e py3
25+
@for f in $(shell find tests/integration -maxdepth 1 -mindepth 1 -name "*.py" | grep -v "__init__.py"); do \
26+
tox -e integration -- "$${f}"; \
27+
done
2528

2629
.PHONY: lint
2730
lint:

0 commit comments

Comments
 (0)