mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Moved fast-testing saved virtualenvs inside tests_cache.
This commit is contained in:
parent
6d54efc10d
commit
00d94d905e
2 changed files with 2 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -21,5 +21,3 @@ build/*
|
|||
pip-log.txt
|
||||
pip.log
|
||||
*.~
|
||||
tests/test_ws/
|
||||
tests/test_ws_backup/
|
|
@ -371,8 +371,8 @@ class FastTestPipEnvironment(TestPipEnvironment):
|
|||
def __init__(self, environ=None):
|
||||
import virtualenv
|
||||
|
||||
self.root_path = here / 'test_ws'
|
||||
self.backup_path = here / 'test_ws_backup'
|
||||
self.root_path = here / 'tests_cache' / 'test_ws'
|
||||
self.backup_path = here / 'tests_cache' / 'test_ws_backup'
|
||||
|
||||
self.scratch_path = self.root_path / self.scratch
|
||||
|
||||
|
|
Loading…
Reference in a new issue