mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-19 17:14:43 +04:00
Adds failing test for cwd problem.
This commit is contained in:
parent
d4c9f9075e
commit
aa9c77abe8
6 changed files with 69 additions and 28 deletions
11
testing/resources/prints_cwd_repo/setup.py
Normal file
11
testing/resources/prints_cwd_repo/setup.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='prints_cwd',
|
||||
version='0.0.0',
|
||||
packages=find_packages('.'),
|
||||
entry_points={
|
||||
'console_scripts': ['prints_cwd = prints_cwd.main:func'],
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue