From 33e8079a89cf54c0291309afab05d689eef00785 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:52:17 -0400 Subject: [PATCH] remove setup.cfg --- tests/test_bake_project.py | 1 - {{cookiecutter.project_slug}}/setup.cfg | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 {{cookiecutter.project_slug}}/setup.cfg diff --git a/tests/test_bake_project.py b/tests/test_bake_project.py index b1e924002..8ed65a39d 100644 --- a/tests/test_bake_project.py +++ b/tests/test_bake_project.py @@ -79,7 +79,6 @@ def test_bake_with_defaults(cookies): found_toplevel_files = [f.basename for f in result.project.listdir()] assert 'setup.py' in found_toplevel_files - assert 'setup.cfg' in found_toplevel_files assert 'tox.ini' in found_toplevel_files assert 'tests' in found_toplevel_files diff --git a/{{cookiecutter.project_slug}}/setup.cfg b/{{cookiecutter.project_slug}}/setup.cfg deleted file mode 100644 index 9045447c7..000000000 --- a/{{cookiecutter.project_slug}}/setup.cfg +++ /dev/null @@ -1,13 +0,0 @@ - -{%- if cookiecutter.use_pytest == 'y' %} - -[tool:pytest] -addopts = - --ignore=setup.py - --strict-markers - --tb=native -python_files = test_*.py -markers = - online: mark test to need internet connection - slow: mark test to be slow -{%- endif %}