Skip to content
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