Skip to content

Commit cf094a7

Browse files
committed
6.0.0
1 parent 1f6b66a commit cf094a7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Diff for: .github/workflows/test_macos.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
pip3 install -e .
2222
- name: Run the test suite
2323
run: |
24-
pytest -v
24+
cd tests && pytest -v

Diff for: .github/workflows/test_ubuntu.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
pip3 install -e .
2222
- name: Run the test suite
2323
run: |
24-
pytest -v
24+
cd tests && pytest -v

Diff for: .github/workflows/test_windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
pip3 install -e .
2222
- name: Run the test suite
2323
run: |
24-
pytest -v
24+
cd tests && pytest -v

Diff for: kss/_modules/hangulization/hangulize/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ def hangulize(string, code=None):
2323
글로리아
2424
2525
:param string: a loan word
26-
:param code: a language code as ISO 639-3. if ``lang`` is not given,
27-
it is required
26+
:param code: a language code as ISO 639-3.
2827
"""
2928
return get_lang(code).hangulize(string)
3029

0 commit comments

Comments
 (0)