Skip to content

Commit

Permalink
Remove pep517 dependency and LocalPackage fixture, no longer used.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 20, 2021
1 parent 54c0860 commit e59f3b6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ testing =
# local
importlib_resources>=1.3; python_version < "3.9"
packaging
pep517
pyfakefs
flufl.flake8
pytest-perf >= 0.9.2
Expand Down
15 changes: 0 additions & 15 deletions tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,21 +231,6 @@ def setUp(self):
build_files(EggInfoFile.files, prefix=self.site_dir)


class LocalPackage:
files: FilesDef = {
"setup.py": """
import setuptools
setuptools.setup(name="local-pkg", version="2.0.1")
""",
}

def setUp(self):
self.fixtures = contextlib.ExitStack()
self.addCleanup(self.fixtures.close)
self.fixtures.enter_context(tempdir_as_cwd())
build_files(self.files)


def build_files(file_defs, prefix=pathlib.Path()):
"""Build a set of files/directories, as described by the
Expand Down

0 comments on commit e59f3b6

Please sign in to comment.