Skip to content

Commit

Permalink
update test test_cli_non_existent_handler_id_in_config
Browse files Browse the repository at this point in the history
  • Loading branch information
vcidst committed Oct 21, 2024
1 parent d7ad3db commit f6b28a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,5 @@ tests/executor_test_packages

grpc-standalone-server-integration-test-results.xml
grpc-server-docker-integration-test-results.xml

.vscode/
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ def test_cli_invalid_format_value_in_config(caplog: LogCaptureFixture) -> None:


@pytest.mark.skipif(
sys.version_info.minor in [9, 10],
reason="no error is raised with python 3.9 or 3.10",
sys.version_info.minor != 8,
reason="no error is raised with python 3.9+",
)
def test_cli_non_existent_handler_id_in_config(caplog: LogCaptureFixture) -> None:
root_dir = Path(__file__).resolve().parents[1]
Expand Down

0 comments on commit f6b28a4

Please sign in to comment.