mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
Create an actual environment for python healthy() types test
This commit is contained in:
parent
fe10811e29
commit
f6b0c135ce
1 changed files with 6 additions and 2 deletions
|
|
@ -54,7 +54,11 @@ def test_find_by_sys_executable(exe, realpath, expected):
|
|||
|
||||
def test_healthy_types_py_in_cwd(tmpdir):
|
||||
with tmpdir.as_cwd():
|
||||
prefix = tmpdir.join('prefix').ensure_dir()
|
||||
prefix.join('setup.py').write('import setuptools; setuptools.setup()')
|
||||
prefix = Prefix(str(prefix))
|
||||
python.install_environment(prefix, C.DEFAULT, ())
|
||||
|
||||
# even if a `types.py` file exists, should still be healthy
|
||||
tmpdir.join('types.py').ensure()
|
||||
# this env doesn't actually exist (for test speed purposes)
|
||||
assert python.healthy(Prefix(str(tmpdir)), C.DEFAULT) is True
|
||||
assert python.healthy(prefix, C.DEFAULT) is True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue