From a5b1f050c8eeb434d6f586fb4d203a7260701c2f Mon Sep 17 00:00:00 2001 From: Chris Kucharczyk Date: Sat, 7 Oct 2023 11:16:24 -0500 Subject: [PATCH] remove setup.py from linting/formatting; --- Makefile | 6 +++--- tests/test_creation.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4148d6a8f..cbcf80f0c 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,12 @@ requirements: ## Format the code using isort and black format: isort --profile black ccds hooks tests "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" - black ccds hooks tests setup.py "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" + black ccds hooks tests "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" lint: - flake8 ccds hooks tests setup.py "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" + flake8 ccds hooks tests "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" isort --check --profile black ccds hooks tests "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" - black --check ccds hooks tests setup.py "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" + black --check ccds hooks tests "{{ cookiecutter.repo_name }}/{{ cookiecutter.module_name }}" ### DOCS diff --git a/tests/test_creation.py b/tests/test_creation.py index e7b6e7d0e..6a60bc25b 100644 --- a/tests/test_creation.py +++ b/tests/test_creation.py @@ -6,7 +6,6 @@ from conftest import bake_project - BASH_EXECUTABLE = os.getenv("BASH_EXECUTABLE", "bash")