Skip to content

Commit

Permalink
updated test targets in makefile, removed virtualenv dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
andreygubarev committed May 10, 2024
1 parent f3a5e73 commit 53f02ce
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 @@ -9,13 +9,13 @@ lint: ## Lint
ansible-lint -v molecule_qemu
pycodestyle molecule_qemu

.PHONY: test ## Test
test:
.PHONY: test
test: ## Test
pip install -e .
cd tests && molecule test

.PHONY: test-%
test-%: virtualenv
test-%:
pip install -e .
cd tests && molecule test -s $*

Expand Down

0 comments on commit 53f02ce

Please sign in to comment.