Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bigquery/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -70,7 +70,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install(
os.path.join('..', 'storage'),
Expand Down
2 changes: 1 addition & 1 deletion bigtable/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -67,7 +67,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
4 changes: 2 additions & 2 deletions datastore/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,7 +68,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand All@@ -92,7 +92,7 @@ def doctests(session):
session.interpreter = 'python3.6'

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', 'sphinx', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion firestore/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -72,7 +72,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install(os.path.join('..', 'test_utils'))
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion language/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,7 +64,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../storage/', '../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion logging/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,7 +64,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/', '../bigquery/', '../pubsub/',
'../storage/')
Expand Down
2 changes: 1 addition & 1 deletion monitoring/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,7 +61,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion pubsub/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,7 +61,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion spanner/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,7 +68,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion speech/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -67,7 +67,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/', '../storage/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion storage/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,7 +68,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down
2 changes: 1 addition & 1 deletion translate/nox.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,7 +61,7 @@ def system_tests(session, python_version):
session.virtualenv_dirname = 'sys-' + python_version

# Install all test dependencies, then install this package into the
# virutalenv's dist-packages.
# virtualenv's dist-packages.
session.install('mock', 'pytest', *LOCAL_DEPS)
session.install('../test_utils/')
session.install('.')
Expand Down