diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d1dd1de..40b5b7a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,6 +61,7 @@ jobs: export PDAL_PLUGIN_PATH=$(python -m pdal --pdal-plugin-path) echo "PDAL_DRIVER_PATH $PDAL_DRIVER_PATH" echo "PDAL_PLUGIN_PATH $PDAL_PLUGIN_PATH" + python -m pdal pdal --drivers --debug py.test -v test/ diff --git a/src/pdal/__main__.py b/src/pdal/__main__.py index f45f3151..310e5872 100644 --- a/src/pdal/__main__.py +++ b/src/pdal/__main__.py @@ -23,7 +23,7 @@ def print_driver_path(args): print (os.environ['PDAL_DRIVER_PATH']) def print_plugin_path(args): - purelib = sysconfig.get_paths()["purelib"]+os.path.sep+"pdal" + purelib = sysconfig.get_paths()["purelib"]+os.path.sep if sys.platform == "linux" or sys.platform == "linux2": suffix = 'so'