Skip to content
This repository was archived by the owner on Nov 9, 2024. It is now read-only.

Commit f6873e7

Browse files
fix(python_library): fix external unit test dependencies
I recently submitted https://github.com/googleapis/synthtool/pull/811/files, allowing external dependencies for unit tests. This fixes a small missing comma bug Source-Author: Daniel Sanche <d.sanche14@gmail.com> Source-Date: Thu Oct 29 16:58:01 2020 -0700 Source-Repo: googleapis/synthtool Source-Sha: 6542bd723403513626f61642fc02ddca528409aa Source-Link: googleapis/synthtool@6542bd7
1 parent cbe940d commit f6873e7

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ def default(session):
7272
# Install all test dependencies, then install this package in-place.
7373
session.install("asyncmock", "pytest-asyncio")
7474

75-
session.install("mock", "pytest", "pytest-cov")
75+
session.install(
76+
"mock", "pytest", "pytest-cov",
77+
)
7678
session.install("-e", ".")
7779

7880
# Run py.test against the unit tests.

synth.metadata

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
"git": {
2020
"name": "synthtool",
2121
"remote": "https://github.com/googleapis/synthtool.git",
22-
"sha": "ea52b8a0bd560f72f376efcf45197fb7c8869120"
22+
"sha": "6542bd723403513626f61642fc02ddca528409aa"
2323
}
2424
},
2525
{
2626
"git": {
2727
"name": "synthtool",
2828
"remote": "https://github.com/googleapis/synthtool.git",
29-
"sha": "ea52b8a0bd560f72f376efcf45197fb7c8869120"
29+
"sha": "6542bd723403513626f61642fc02ddca528409aa"
3030
}
3131
}
3232
],

0 commit comments

Comments
 (0)