From 049dd90705c5a2f5baf06823fdaa6294e3618645 Mon Sep 17 00:00:00 2001 From: Marcel Zwiers Date: Mon, 2 Oct 2023 16:22:36 +0200 Subject: [PATCH] Clean-up / remove the Makefile as it is not needed and confusing --- .github/workflows/tests.yaml | 5 +++-- Makefile | 11 ----------- 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 Makefile diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 814f9294..71e3e302 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -22,7 +22,8 @@ jobs: - name: Install dependencies run: | - make install + pip --upgrade pip + pip install .[all] - name: Install dcm2niix posix if: runner.os != 'Windows' @@ -46,4 +47,4 @@ jobs: - name: Tests with pytest run: | - make test + pytest tests diff --git a/Makefile b/Makefile deleted file mode 100644 index df87d09c..00000000 --- a/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -help: - @egrep -h '\s##\s' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-30s\033[0m %s\n", $$1, $$2}' - -install: ## install python dependencies and bidscoin package - @python -m pip install --upgrade pip - @python -m pip install .[all] - -test: ## run all the tests in the tests folder - @pytest tests/ - -ci: install test ## emulate ci, runs install and test