Skip to content

Commit 2aed010

Browse files
docs(nodejs_mono_repo): update broken links in README (#287)
Source-Link: googleapis/synthtool@50db768 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:a31c2fd2f28e994254f6367b44e112722f3263247798ae222d7986bb12328ec3 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 6b1aade commit 2aed010

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

packages/google-analytics-data/.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:993a058718e84a82fda04c3177e58f0a43281a996c7c395e0a56ccc4d6d210d7
17-
16+
digest: sha256:a31c2fd2f28e994254f6367b44e112722f3263247798ae222d7986bb12328ec3

packages/google-analytics-data/samples/snippets/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ def _session_tests(
207207
session: nox.sessions.Session, post_install: Callable = None
208208
) -> None:
209209
# check for presence of tests
210-
test_list = glob.glob("*_test.py") + glob.glob("test_*.py")
211-
test_list.extend(glob.glob("tests"))
210+
test_list = glob.glob("**/*_test.py", recursive=True) + glob.glob("**/test_*.py", recursive=True)
211+
test_list.extend(glob.glob("**/tests", recursive=True))
212212

213213
if len(test_list) == 0:
214214
print("No tests found, skipping directory.")

0 commit comments

Comments
 (0)