We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a16ff15 commit a72ccadCopy full SHA for a72ccad
noxfile.py
@@ -22,7 +22,7 @@ def _session(fn):
22
23
@session(python=["3.8", "3.9", "3.10", "3.11"])
24
def tests(session):
25
- session.install("pytest")
+ session.install("pytest", str(ROOT))
26
session.run("pytest")
27
28
@@ -63,7 +63,13 @@ def style(session):
63
64
@session()
65
def typing(session):
66
- session.install("mypy", "types-jsonschema", str(ROOT))
+ session.install( # FIXME: Don't repeat dependencies.
67
+ "attrs",
68
+ "mypy",
69
+ "pyrsistent",
70
+ "types-jsonschema",
71
+ str(ROOT),
72
+ )
73
session.run("python", "-m", "mypy", str(REFERENCING))
74
75
0 commit comments