Skip to content

Commit d274ce3

Browse files
committed
chore: don't install deps using '-e'
1 parent 6aebe03 commit d274ce3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

synthtool/gcp/templates/python_library/noxfile.py.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ def install_unittest_dependencies(session, *constraints):
133133
session.install(*UNIT_TEST_EXTERNAL_DEPENDENCIES, *constraints)
134134

135135
if UNIT_TEST_LOCAL_DEPENDENCIES:
136-
session.install("-e", *UNIT_TEST_LOCAL_DEPENDENCIES, *constraints)
136+
session.install(*UNIT_TEST_LOCAL_DEPENDENCIES, *constraints)
137137

138138
if UNIT_TEST_DEPENDENCIES:
139-
session.install("-e", *UNIT_TEST_DEPENDENCIES, *constraints)
139+
session.install(*UNIT_TEST_DEPENDENCIES, *constraints)
140140

141141
if UNIT_TEST_EXTRAS_BY_PYTHON:
142142
extras = UNIT_TEST_EXTRAS_BY_PYTHON.get(session.python, [])

0 commit comments

Comments
 (0)