Initial commit
This commit is contained in:
commit
b1a1a6866d
23 changed files with 495 additions and 0 deletions
24
noxfile.py
Normal file
24
noxfile.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Import built-in modules
|
||||
import os
|
||||
import sys
|
||||
|
||||
# Import third-party modules
|
||||
import nox
|
||||
|
||||
|
||||
ROOT = os.path.dirname(__file__)
|
||||
|
||||
# Ensure maya_umbrella is importable.
|
||||
if ROOT not in sys.path:
|
||||
sys.path.append(ROOT)
|
||||
|
||||
# Import third-party modules
|
||||
from nox_actions import codetest # noqa: E402
|
||||
from nox_actions import lint # noqa: E402
|
||||
from nox_actions import release # noqa: E402
|
||||
|
||||
|
||||
nox.session(lint.lint, name="lint")
|
||||
nox.session(lint.lint_fix, name="lint-fix")
|
||||
nox.session(codetest.pytest, name="pytest")
|
||||
nox.session(release.build_exe, name="build-exe")
|
||||
Loading…
Add table
Add a link
Reference in a new issue