Skip to content

Commit

Permalink
Add Makefile target to test without linting
Browse files Browse the repository at this point in the history
  • Loading branch information
davedittrich committed Oct 16, 2023
1 parent c4f27a2 commit b6c8ed5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ help:
@echo " retest - re-run molecule tests on scenario '$(SCENARIO)' on distro ($(MOLECULE_DISTRO)) without destroying"
@echo " scenario-exists - checks to ensure the scenario (variable 'SCENARIO') exists."
@echo " spotless - clean, then get rid of as much else as possible"
@echo " test - run molecule tests on scenario '$(SCENARIO)' on distro ($(MOLECULE_DISTRO))"
@echo " test - run molecule tests on scenario '$(SCENARIO)' on distro ($(MOLECULE_DISTRO)) after destroying"
@echo " test-all-distros - run molecule tests on all scenarios (fake 'matrix' like GitHub Actions)"
@echo " help-delegated-host - provide help on using the 'delegated' scenario"
@echo " test-delegated - run molecule against delegated host ($(DELEGATED_HOST))"
Expand Down Expand Up @@ -160,6 +160,9 @@ spotless: clean clean-molecule
.PHONY: test
test: lint reset retest

.PHONY: test-no-lint
test-no-lint: reset retest

.PHONY: retest
retest: check-conda scenario-exists galaxy.yml
@docker info 2>/dev/null | grep -q ID || (echo "[-] docker does not appear to be running" && exit 1)
Expand Down

0 comments on commit b6c8ed5

Please sign in to comment.