Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#247] Syncing Atom DB Python with C++ implementation #248

Merged
merged 8 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ pylint:
@pylint ./hyperon_das_atomdb --rcfile=.pylintrc

mypy:
@unbuffer mypy --color-output --config-file mypy.ini ./hyperon_das_atomdb
@mypy --color-output --config-file mypy.ini ./hyperon_das_atomdb

lint: isort black flake8
lint: isort black flake8 pylint mypy

unit-tests:
@py.test -sx -vv ./tests/unit
Expand All @@ -25,3 +25,4 @@ integration-tests:
@py.test -sx -vv ./tests/integration

pre-commit: lint unit-tests-coverage unit-tests integration-tests

Loading