Skip to content

Move to src layout #23

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

Merged
merged 1 commit into from
Feb 16, 2022
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
2 changes: 1 addition & 1 deletion scripts-dev/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
set -e

files=(
"matrix_common"
"src"
"tests"
)

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ classifiers =


[options]
package_dir = =src
packages =
matrix_common
python_requires = >= 3.6
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ commands =
extras = dev

commands =
flake8 matrix_common tests
black --check --diff matrix_common tests
isort --check-only --diff matrix_common tests
flake8 src tests
black --check --diff src tests
isort --check-only --diff src tests

[testenv:check_types]

extras = dev

commands =
mypy matrix_common tests
mypy src tests