File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 22from pathlib import Path
33
44
5- @nox .session (python = False )
5+ @nox .session ()
66def develop (session ):
77 session .install ("flit" )
88 session .run (* "flit install -s" .split ())
99
1010
11- @nox .session (python = False )
11+ @nox .session ()
1212def black (session ):
1313 session .install ("black" )
1414 session .run (* "black upath noxfile.py setup.py" .split ())
1515
1616
17- @nox .session (python = False )
17+ @nox .session ()
1818def lint (session ):
1919 session .install ("flake8" )
2020 session .run (* "flake8" .split ())
2121
2222
23- @nox .session (python = False )
23+ @nox .session ()
2424def install (session ):
2525 session .install ("." )
2626
2727
28- @nox .session (python = False )
28+ @nox .session ()
2929def smoke (session ):
3030 session .install (
3131 "pytest" ,
@@ -42,13 +42,13 @@ def smoke(session):
4242 session .run (* "pytest --skiphdfs -vv upath" .split ())
4343
4444
45- @nox .session (python = False )
45+ @nox .session ()
4646def build (session ):
4747 session .install ("flit" )
4848 session .run (* "flit build" .split ())
4949
5050
51- @nox .session (python = False )
51+ @nox .session ()
5252def rm_dirs (session ):
5353 paths = ["build" , "dist" ]
5454 for path in paths :
You can’t perform that action at this time.
0 commit comments