Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
suminb committed Apr 24, 2024
1 parent ffbe39a commit 2991fb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
pip install -e .
pytest -v tests --cov hanja --cov-report term-missing
- name: Lint with black and mypy
run: |
black --check .
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ def readme():

setup(
name="hanja",
py_modules=["hanja/__init__", "hanja.hangul"],
py_modules=["hanja", "hanja/__init__", "hanja.hangul"],
version=hanja.__version__,
description="Hangul & Hanja library",
long_description=readme(),
author=hanja.__author__,
author_email=hanja.__email__,
url="https://github.com/suminb/hanja",
packages=["", "hanja"],
packages=[],
package_data={"": ["requirements.txt"], "hanja": ["table.yml"]},
include_package_data=True,
install_requires=install_requires,
Expand Down

0 comments on commit 2991fb5

Please sign in to comment.