Skip to content

Commit

Permalink
Replace unidecode by unicodedata, pinyin, romkan
Browse files Browse the repository at this point in the history
Potential licence issue
  • Loading branch information
sbrunner committed Jul 6, 2022
1 parent da41b35 commit c24df6d
Show file tree
Hide file tree
Showing 7 changed files with 233 additions and 112 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
if: env.HAS_SECRETS == 'HAS_SECRETS'

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --upgrade pip
- run: python3 -m pip install --user --requirement=ci/requirements.txt

- name: Checks
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ help: ## Display this help message

.poetry.timestamps: pyproject.toml poetry.lock
poetry --version || pip install --user --requirement=requirements.txt
poetry install --extras=tools
poetry install --extras=tools --extras=generate --extras=extra
touch $@

.PHONY: prospector
Expand All @@ -19,7 +19,7 @@ prospector: .poetry.timestamps # Run Prospector check

.PHONY: pyprest
pytest: .poetry.timestamps # Run the unit tests
poetry run pytest --verbose --cov=jsonschema_gentypes -vv --cov-report=term-missing
poetry run pytest -vv --cov=jsonschema_gentypes --cov-report=term-missing

.PHONY: jsonschema-gentypes
jsonschema-gentypes: .poetry.timestamps # Generate files related to the JSON schema
Expand Down
5 changes: 5 additions & 0 deletions ci/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
checks:
versions:
rebuild: False
codespell:
arguments:
- --quiet-level=2
- --check-filenames
- --ignore-words-list=nd

publish:
docker:
Expand Down
Loading

0 comments on commit c24df6d

Please sign in to comment.