Restructure lib directory to install via pip
This change allows the currently existing modules to be imported from the `osa_toolkit` package. In order to install the python modules used by the inventory via setup.py with pbr, we need to rename the lib directory to match the name of the package we wish to install. pbr doesn't allow for doing any kind of directory renaming within the setup.{cfg,py} files, but we need to keep using it in order to consume global requirements updates. Change-Id: Idb7780f55e4a1fd77dd76becbf67c1ccbf220db7
This commit is contained in:
parent
4fb05ce306
commit
2be3319ac9
@ -20,7 +20,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
current_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
|
current_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
|
||||||
lib_path = os.path.join(current_path, '..', '..', 'lib')
|
lib_path = os.path.join(current_path, '..', '..', 'osa_toolkit')
|
||||||
sys.path.append(lib_path)
|
sys.path.append(lib_path)
|
||||||
|
|
||||||
import generate
|
import generate
|
||||||
|
@ -20,7 +20,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
cwd = os.path.abspath(os.path.dirname(__file__))
|
cwd = os.path.abspath(os.path.dirname(__file__))
|
||||||
import_path = os.path.join(cwd, '..', 'lib')
|
import_path = os.path.join(cwd, '..', 'osa_toolkit')
|
||||||
sys.path.append(import_path)
|
sys.path.append(import_path)
|
||||||
|
|
||||||
import tools
|
import tools
|
||||||
|
@ -27,7 +27,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
cwd = os.path.abspath(os.path.dirname(__file__))
|
cwd = os.path.abspath(os.path.dirname(__file__))
|
||||||
import_path = os.path.join(cwd, '..', 'lib')
|
import_path = os.path.join(cwd, '..', 'osa_toolkit')
|
||||||
sys.path.append(import_path)
|
sys.path.append(import_path)
|
||||||
|
|
||||||
import manage
|
import manage
|
||||||
|
@ -22,3 +22,6 @@ warnerrors = True
|
|||||||
|
|
||||||
[wheel]
|
[wheel]
|
||||||
universal = 1
|
universal = 1
|
||||||
|
|
||||||
|
[files]
|
||||||
|
packages = osa_toolkit
|
||||||
|
@ -17,7 +17,7 @@ from os import path
|
|||||||
import sys
|
import sys
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
LIB_DIR = 'lib'
|
LIB_DIR = 'osa_toolkit'
|
||||||
|
|
||||||
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ from test_inventory import get_inventory
|
|||||||
from test_inventory import make_config
|
from test_inventory import make_config
|
||||||
|
|
||||||
INV_DIR = 'playbooks/inventory'
|
INV_DIR = 'playbooks/inventory'
|
||||||
LIB_DIR = 'lib'
|
LIB_DIR = 'osa_toolkit'
|
||||||
|
|
||||||
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
||||||
sys.path.append(path.join(os.getcwd(), INV_DIR))
|
sys.path.append(path.join(os.getcwd(), INV_DIR))
|
||||||
|
@ -23,7 +23,7 @@ import warnings
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
INV_DIR = 'playbooks/inventory'
|
INV_DIR = 'playbooks/inventory'
|
||||||
LIB_DIR = 'lib'
|
LIB_DIR = 'osa_toolkit'
|
||||||
|
|
||||||
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
sys.path.append(path.join(os.getcwd(), LIB_DIR))
|
||||||
sys.path.append(path.join(os.getcwd(), INV_DIR))
|
sys.path.append(path.join(os.getcwd(), INV_DIR))
|
||||||
|
@ -17,7 +17,7 @@ from os import path
|
|||||||
import sys
|
import sys
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
LIB_DIR = path.join(os.getcwd(), 'lib')
|
LIB_DIR = path.join(os.getcwd(), 'osa_toolkit')
|
||||||
|
|
||||||
sys.path.append(LIB_DIR)
|
sys.path.append(LIB_DIR)
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ import sys
|
|||||||
import test_inventory
|
import test_inventory
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
MANAGE_DIR = path.join(os.getcwd(), 'lib')
|
MANAGE_DIR = path.join(os.getcwd(), 'osa_toolkit')
|
||||||
TARGET_DIR = path.join(os.getcwd(), 'tests', 'inventory')
|
TARGET_DIR = path.join(os.getcwd(), 'tests', 'inventory')
|
||||||
|
|
||||||
sys.path.append(MANAGE_DIR)
|
sys.path.append(MANAGE_DIR)
|
||||||
|
2
tox.ini
2
tox.ini
@ -154,7 +154,7 @@ commands =
|
|||||||
coverage run -a {toxinidir}/tests/test_dictutils.py
|
coverage run -a {toxinidir}/tests/test_dictutils.py
|
||||||
coverage run -a {toxinidir}/tests/test_ip.py
|
coverage run -a {toxinidir}/tests/test_ip.py
|
||||||
coverage run -a {toxinidir}/tests/test_filesystem.py
|
coverage run -a {toxinidir}/tests/test_filesystem.py
|
||||||
coverage report --show-missing --include={toxinidir}/playbooks/inventory/*,{toxinidir}/lib/*
|
coverage report --show-missing --include={toxinidir}/playbooks/inventory/*,{toxinidir}/osa_toolkit/*
|
||||||
|
|
||||||
|
|
||||||
[testenv:linters]
|
[testenv:linters]
|
||||||
|
Loading…
Reference in New Issue
Block a user