2626 @cargo doc
2727.PHONY : doc
2828
29- test : cargotest pytest integration-test
29+ test : cargotest pytest
3030.PHONY : test
3131
3232cargotest : GeoLite2-City.mmdb
@@ -54,29 +54,29 @@ pytest:
5454 @$(MAKE ) -C py test
5555.PHONY : pytest
5656
57- venv/bin/python : Makefile
58- rm -rf venv
59- virtualenv -p $$ SEMAPHORE_PYTHON_VERSION venv
57+ . venv/bin/python : Makefile
58+ rm -rf . venv
59+ virtualenv -p $$ SEMAPHORE_PYTHON_VERSION . venv
6060
61- integration-test : venv/bin/python
62- venv/bin/pip install -U pytest pytest-localserver requests flask " sentry-sdk>=0.2.0" pytest-rerunfailures pytest-xdist " git+https://github.com/untitaker/pytest-sentry#egg=pytest-sentry"
61+ integration-test : . venv/bin/python
62+ . venv/bin/pip install -U pytest pytest-localserver requests flask " sentry-sdk>=0.2.0" pytest-rerunfailures pytest-xdist " git+https://github.com/untitaker/pytest-sentry#egg=pytest-sentry"
6363 cargo build
64- @venv/bin/pytest tests -n12 --reruns 5
64+ @. venv/bin/pytest tests -n12 --reruns 5
6565.PHONY : integration-test
6666
67- python-format : venv/bin/python
68- venv/bin/pip install -U black
69- venv/bin/black .
67+ python-format : . venv/bin/python
68+ . venv/bin/pip install -U black
69+ . venv/bin/black .
7070.PHONY : python-format
7171
72- python-format-check : venv/bin/python
73- venv/bin/pip install -U black
74- venv/bin/black --check .
72+ python-format-check : . venv/bin/python
73+ . venv/bin/pip install -U black
74+ . venv/bin/black --check .
7575.PHONY : python-format
7676
77- python-lint : venv/bin/python
78- venv/bin/pip install -U flake8
79- venv/bin/flake8
77+ python-lint : . venv/bin/python
78+ . venv/bin/pip install -U flake8
79+ . venv/bin/flake8
8080.PHONY : python-format
8181
8282format : python-format
@@ -97,6 +97,9 @@ clippy:
9797lint : clippy python-lint
9898.PHONY : lint
9999
100+ check : format test
101+ .PHONY : check
102+
100103test-process-event :
101104 # Process a basic event and assert its output
102105 bash -c ' diff \
0 commit comments