Skip to content

Commit

Permalink
remove setup.py from linting/formatting;
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjkuch committed Oct 7, 2023
1 parent aa89ff0 commit a5b1f05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion tests/test_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from conftest import bake_project


BASH_EXECUTABLE = os.getenv("BASH_EXECUTABLE", "bash")


Expand Down

0 comments on commit a5b1f05

Please sign in to comment.