Skip to content
Open
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
16 changes: 4 additions & 12 deletions packages/gapic-generator/gapic/templates/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -575,12 +571,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,12 +455,8 @@ def prerelease_deps(session, protobuf_implementation):
`pip install --pre <package>`.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down Expand Up @@ -567,12 +563,8 @@ def core_deps_from_source(session, protobuf_implementation):
rather than pulling the dependencies from PyPI.
"""

# Install all dependencies
session.install("-e", ".")

# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Install all dependencies and unit test environment
install_unittest_dependencies(session)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
Expand Down
Loading