Skip to content

Commit c50c93a

Browse files
committed
Clean up Makefile
1 parent f2b63ab commit c50c93a

File tree

2 files changed

+140
-145
lines changed

2 files changed

+140
-145
lines changed

Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,17 @@ docs:
1414
.PHONY: test
1515
test:
1616
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
17-
@tox -e py
17+
@tox -e py -- ./tests
18+
19+
.PHONY: test-unit
20+
test:
21+
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
22+
@tox -e py -- ./tests/unit
23+
24+
.PHONY: test-integration
25+
test:
26+
@echo "$(GREEN_COLOR)==> test $(RESET_COLOR)"
27+
@tox -e py -- ./tests/integration ./tests/system
1828

1929
.PHONY: up
2030
up:

0 commit comments

Comments
 (0)