Initial commit
This commit is contained in:
commit
b1a1a6866d
23 changed files with 495 additions and 0 deletions
19
nox_actions/utils.py
Normal file
19
nox_actions/utils.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Import built-in modules
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
PACKAGE_NAME = ""
|
||||
THIS_ROOT = Path(__file__).parent.parent
|
||||
PROJECT_ROOT = THIS_ROOT.parent
|
||||
|
||||
|
||||
def _assemble_env_paths(*paths):
|
||||
"""Assemble environment paths separated by a semicolon.
|
||||
|
||||
Args:
|
||||
*paths: Paths to be assembled.
|
||||
|
||||
Returns:
|
||||
str: Assembled paths separated by a semicolon.
|
||||
"""
|
||||
return ";".join(paths)
|
||||
Loading…
Add table
Add a link
Reference in a new issue