Skip to content

Commit b2c10e5

Browse files
committed
fix nox
1 parent 2a6fc8e commit b2c10e5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

noxfile.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def tests(session: nox.Session) -> None:
6565
}
6666
)
6767

68-
install(session, f".[{extras}]")
6968
install(session, "-e", "./vectors")
69+
install(session, f".[{extras}]")
7070

7171
session.run("pip", "list")
7272

@@ -257,7 +257,11 @@ def local(session):
257257
test_dependencies = pyproject_data["project"]["optional-dependencies"][
258258
"test"
259259
]
260-
test_dependencies.remove("cryptography_vectors")
260+
test_dependencies = [
261+
x
262+
for x in test_dependencies
263+
if not x.startswith("cryptography_vectors")
264+
]
261265
install(
262266
session,
263267
*pyproject_data["build-system"]["requires"],

0 commit comments

Comments
 (0)