Skip to content

Commit

Permalink
Refactor code for readability and conciseness
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed Feb 18, 2021
1 parent 9ad3616 commit 46e0840
Show file tree
Hide file tree
Showing 9 changed files with 294 additions and 276 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Run mypy
run: mypy binarytree
- name: Run pytest
run: py.test --cov=./ --cov-report=xml
run: py.test --cov=binarytree --cov-report=xml
- name: Run Sphinx doctest
run: python -m sphinx -b doctest docs docs/_build
- name: Run Sphinx HTML
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,6 @@ ENV/

# setuptools-scm
binarytree/version.py

# Jupyter Notebook
*.ipynb
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
rev: v0.790
hooks:
- id: mypy
args: [ binarytree ]
files: ^binarytree/
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
Expand Down
Loading

0 comments on commit 46e0840

Please sign in to comment.