1
1
Fork 0
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:
Carl Meyer 2011-03-19 00:48:19 -04:00
parent 6d54efc10d
commit 00d94d905e
2 changed files with 2 additions and 4 deletions

2
.gitignore vendored
View file

@ -21,5 +21,3 @@ build/*
pip-log.txt
pip.log
*.~
tests/test_ws/
tests/test_ws_backup/

View file

@ -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