py*: add Korean translation (#14559)

This commit is contained in:
코드싸이
2024-11-02 16:14:48 +09:00
committed by GitHub
parent b6bf0c2f48
commit bdbac0857c
17 changed files with 405 additions and 0 deletions

28
pages.ko/common/pytest.md Normal file
View File

@@ -0,0 +1,28 @@
# pytest
> Python 테스트 실행.
> 더 많은 정보: <https://docs.pytest.org/>.
- 특정 파일에서 테스트 실행:
`pytest {{경로/대상/테스트_파일1.py 경로/대상/테스트_파일2.py ...}}`
- 특정 [k]eyword 표현식과 일치하는 테스트 실행:
`pytest -k {{표현식}}`
- 테스트가 실패하거나 오류가 발생하면 즉시 종료:
`pytest --exitfirst`
- 마커와 일치하거나 제외하는 테스트 실행:
`pytest -m {{마커_이름1 and not 마커_이름2}}`
- 마지막 실패 테스트부터 계속해서 테스트 실패까지 실행:
`pytest --stepwise`
- 출력을 캡처하지 않고 테스트 실행:
`pytest --capture=no`