summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-21 22:33:58 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-21 22:33:58 +0100
commite3741de333a3a43a7968241b6eccaaac66dd7b20 (patch)
tree7c50aee4ca61f77e95f1b038030292c64bbb86c2 /noxfile.py
parentaac452a2dc008338cb543549652da293c14b6b4e (diff)
Working on EMNIST Lines dataset
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/noxfile.py b/noxfile.py
index 098a551..0e2ac7b 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -8,7 +8,14 @@ from nox.sessions import Session
package = "text-recognizer"
nox.options.sessions = "lint", "mypy", "pytype", "safety", "tests"
-locations = "src", "tests", "noxfile.py", "docs/conf.py", "src/text_recognizer/tests"
+locations = (
+ "text_recognizer",
+ "training",
+ "tasks",
+ "tests",
+ "noxfile.py",
+ "docs/conf.py",
+)
def install_with_constraints(session: Session, *args: str, **kwargs: Any) -> None: