From b88b07a8da5e848e3e9df1a1d83850a2b83df3b8 Mon Sep 17 00:00:00 2001 From: hikarikumo Date: Sun, 17 Dec 2023 18:59:48 +0200 Subject: [PATCH] fixes Signed-off-by: hikarikumo --- Makefile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d5499d4..f84aab3 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ #.PHONY: install linter lint selfcheck check install: - @poetry install + poetry install #test: # poetry run pytest brain_games tests @@ -23,12 +23,7 @@ install: lint: poetry run flake8 brain_games -selfcheck: - poetry check - -check: selfcheck lint - -build: check - @poetry build +build: + poetry build .PHONY: install test lint selfcheck check build