Skip to content

Commit b440ba7

Browse files
committed
Add missing INSTALL_BASE
Signed-off-by: R Kent James <[email protected]>
1 parent ca898e5 commit b440ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ament_cmake_python_test/test/build_with_colcon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def do_test_package(package_name, options):
190190
print(f"Testing setup.cfg metadata in package {package_name}")
191191
print(f" options: {options}")
192192
version = options['version'] or "0.0.0"
193-
egg_info_dir = PWD / 'install' / package_name / PYTHON_INSTALL_DIR / f'{package_name}-{version}-{PYEGG_VERSION}.egg-info'
193+
egg_info_dir = PWD / INSTALL_BASE / package_name / PYTHON_INSTALL_DIR / f'{package_name}-{version}-{PYEGG_VERSION}.egg-info'
194194
assert egg_info_dir.exists(), f"egg-info dir does not exist for {package_name}: {egg_info_dir}"
195195
egg_info_file = egg_info_dir / 'PKG-INFO'
196196
assert Path.read_text(egg_info_file).find(f"Keywords: test_of_ament_cmake_python") != -1, \

0 commit comments

Comments
 (0)