From 4758836324087aa6c4b45835c3408e444b350aad Mon Sep 17 00:00:00 2001 From: Alexey Naiden Date: Mon, 21 Sep 2020 20:12:51 +0300 Subject: [PATCH] Fix Makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index ebe4f3f7..fa074804 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,28 @@ PYTEST_FLAGS= +.PHONY: setup setup: pip install -r requirements/test.txt -c requirements/constraints.txt +.PHONY: lint lint: black --check neuro_extras tests setup.py flake8 neuro_extras tests setup.py mypy neuro_extras tests setup.py +.PHONY: format format: isort -rc neuro_extras tests setup.py black neuro_extras tests setup.py +.PHONY: test_e2e test_e2e: pytest -vv ${PYTEST_FLAGS} tests/e2e +.PHONY: test test: lint test_e2e +.PHONY: build build: docker build -t neuromation/neuro-extras:latest \ --build-arg NEURO_EXTRAS_VERSION="$(shell python setup.py --version)" \