test: include all unit test modules - #50
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경 사항
tests/unit/test_auth.py와tests/unit/test_client.py의 파일 단위 제외를 제거했습니다.배경
기존 100% 커버리지 설정은 두 단위 테스트 파일을
--ignore로 숨기고 있었습니다. 현재 두 모듈의 실행 가능한 테스트는 모두 통과하므로 파일 전체 제외가 더 이상 필요하지 않습니다. 실계좌 자격증명이 필요한 8개 테스트는 기존requires_credentials마커에 따라 명시적으로 스킵됩니다.검증
pytest -o addopts='' --timeout=60 -q -rs tests/unit/test_auth.py tests/unit/test_client.py: 53 passed, 8 skippedpytest tests/ --timeout=60 -q --tb=short --cov-report=term-missing:skip-covered --cov-report=json:/tmp/kis-agent-coverage-final.json: 2138 passed, 97 skipped, 100.00% coverage (9974/9974)