From 50b94a8839c38d8eb10473356dbc123327a41bdc Mon Sep 17 00:00:00 2001 From: Florian Maas Date: Fri, 2 Sep 2022 08:04:05 +0200 Subject: [PATCH] debug --- .github/actions/run-checks/action.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-checks/action.yml b/.github/actions/run-checks/action.yml index 9fb9354f..4ff62789 100644 --- a/.github/actions/run-checks/action.yml +++ b/.github/actions/run-checks/action.yml @@ -9,6 +9,7 @@ runs: - name: Formatting check run: | source .venv/bin/activate + ls -al make check shell: bash diff --git a/Makefile b/Makefile index ab35b5c4..56eb18e5 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ check: ## Check code formatting using isort, black, flake8 and mypy. test: ## Test the code with pytest @echo "🚀 Testing code: Running pytest" - @pytest --doctest-modules + @pytest -v --doctest-modules build: clean-build ## Build wheel file using poetry @echo "🚀 Creating wheel file"