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 9ea198a commit e78108fCopy full SHA for e78108f
noxfile.py
@@ -1,6 +1,5 @@
1
import nox
2
import sys
3
-import os
4
5
ARTIFACTS = (
6
"*.egg-info",
@@ -13,7 +12,6 @@
13
12
# Make `nox` default to running tests if you just do `nox`
14
nox.options.sessions = ["test"]
15
16
-# ----- helpers (not sessions) -----
17
18
def do_clean(session: nox.Session) -> None:
19
# uninstall arraykit
@@ -61,7 +59,8 @@ def do_lint(session: nox.Session) -> None:
61
59
external=True,
62
60
)
63
64
-# ----- sessions -----
+
+# NOTE: use `nox -s build` to launch a session
65
66
@nox.session(python=False) # use current environment
67
def clean(session):
tasks.py
0 commit comments