14 lines
276 B
Makefile
14 lines
276 B
Makefile
.PHONY: test
|
|
|
|
test:
|
|
python3 -m pytest tests/test_ci_config.py scripts/test_*.py -v
|
|
|
|
# Connector targets
|
|
.PHONY: test-connectors
|
|
test-connectors:
|
|
python3 -m pytest tests/test_connectors.py -v
|
|
|
|
.PHONY: connectors-help
|
|
connectors-help:
|
|
python3 scripts/run_connector.py --help
|