Changeset: 234879919606 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/234879919606 Added Files: clients/examples/python/CMakeLists.txt Modified Files: clients/examples/CMakeLists.txt sql/test/mapi/Tests/python3_dbapi.SQL.bat Branch: Dec2025 Log Message:
Install sqlsample.py so that we can test from RPMs. diffs (37 lines): diff --git a/clients/examples/CMakeLists.txt b/clients/examples/CMakeLists.txt --- a/clients/examples/CMakeLists.txt +++ b/clients/examples/CMakeLists.txt @@ -11,3 +11,4 @@ add_subdirectory(C) add_subdirectory(perl) add_subdirectory(php) +add_subdirectory(python) diff --git a/clients/examples/python/CMakeLists.txt b/clients/examples/python/CMakeLists.txt new file mode 100644 --- /dev/null +++ b/clients/examples/python/CMakeLists.txt @@ -0,0 +1,15 @@ + +# SPDX-License-Identifier: MPL-2.0 +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# For copyright information, see the file debian/copyright. +#]] + +install(FILES + sqlsample.py + PERMISSIONS ${PROGRAM_PERMISSIONS_DEFAULT} + DESTINATION ${CMAKE_INSTALL_BINDIR} + COMPONENT clienttest) diff --git a/sql/test/mapi/Tests/python3_dbapi.SQL.bat b/sql/test/mapi/Tests/python3_dbapi.SQL.bat --- a/sql/test/mapi/Tests/python3_dbapi.SQL.bat +++ b/sql/test/mapi/Tests/python3_dbapi.SQL.bat @@ -4,4 +4,4 @@ rem must be aligned with the installatio rem clients/examples/python set testpath=%TSTSRCBASE%\clients\examples\python -"%PYTHON%" "%testpath%/sqlsample.py" %MAPIPORT% %TSTDB% %MAPIHOST% +sqlsample.py %MAPIPORT% %TSTDB% %MAPIHOST% _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
