Skip to content
Merged

Dev #15

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
4 changes: 0 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,10 @@ Please complete the following checklist when submitting a PR. The PR will not be
Make sure that the tests passed and the coverage is
sufficient by running `python run_pytests.py --tests_folder=tests` or
`pytest tests --cov=src --cov-report=term-missing`.

- [ ] All new functions and code are clearly documented.

- [ ] The code is formatted using Black.
You can do this by running `black src tests`.
-
- [ ] The imports are sorted using isort.
You can do this by running `isort src tests`.

- [ ] The code is type-checked using Mypy.
You can do this by running `mypy src tests`.
1 change: 1 addition & 0 deletions .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:
statuses: write
issues: write
discussions: write
id-token: write

jobs:
Build-Dist:
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,6 @@ ignore_missing_imports = true

[tool.black]
line-length = 120

[tool.isort]
profile = "black"