Skip to content

Commit 61d832e

Browse files
committed
chore: run system tests in librarian build
1 parent 81cda1e commit 61d832e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.generator/cli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,8 @@ def _run_nox_sessions(library_id: str, repo: str):
434434
"lint",
435435
"lint_setup_py",
436436
"mypy-3.13",
437+
"system-3.9",
438+
"system-3.13",
437439
]
438440
current_session = None
439441
try:

.generator/test_cli.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,8 @@ def test_run_nox_sessions_success(mocker, mock_generate_request_data_for_nox):
464464
"lint",
465465
"lint_setup_py",
466466
"mypy-3.13",
467+
"system-3.9",
468+
"system-3.13",
467469
]
468470
_run_nox_sessions("mock-library", "repo")
469471

@@ -476,6 +478,8 @@ def test_run_nox_sessions_success(mocker, mock_generate_request_data_for_nox):
476478
mocker.call("lint", "mock-library", "repo"),
477479
mocker.call("lint_setup_py", "mock-library", "repo"),
478480
mocker.call("mypy-3.13", "mock-library", "repo"),
481+
mocker.call("system-3.9", "mock-library", "repo"),
482+
mocker.call("system-3.13", "mock-library", "repo"),
479483
]
480484
)
481485

0 commit comments

Comments
 (0)