Skip to content

Commit

Permalink
Rename requires files to standard names.
Browse files Browse the repository at this point in the history
Fixes bug 1179008.

Change-Id: I6765bb82df1ae672790662a30ee3527450685036
  • Loading branch information
emonty committed May 20, 2013
1 parent aa28083 commit c82a811
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tools/install_venv.py
Expand Up @@ -31,8 +31,8 @@

ROOT = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
VENV = os.path.join(ROOT, '.venv')
PIP_REQUIRES = os.path.join(ROOT, 'tools', 'pip-requires')
TEST_REQUIRES = os.path.join(ROOT, 'tools', 'test-requires')
PIP_REQUIRES = os.path.join(ROOT, 'requirements.txt')
TEST_REQUIRES = os.path.join(ROOT, 'test-requirements.txt')
PY_VERSION = "python%s.%s" % (sys.version_info[0], sys.version_info[1])


Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -7,8 +7,8 @@ setenv = VIRTUAL_ENV={envdir}
LANGUAGE=en_US:en
LC_ALL=C

deps = -r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --testr-args='{posargs}'

[testenv:pep8]
Expand Down

0 comments on commit c82a811

Please sign in to comment.