diff --git a/.ci/pipeline/docs.yml b/.ci/pipeline/docs.yml index 3bb2fbb662..b00d5329a1 100644 --- a/.ci/pipeline/docs.yml +++ b/.ci/pipeline/docs.yml @@ -70,6 +70,8 @@ jobs: displayName: 'Build daal4py/sklearnex' - script: | export LD_LIBRARY_PATH=$(dirname $(dirname $(which python)))/lib:$LD_LIBRARY_PATH + echo "check path" + ls daal4py cd doc/daal4py make html 2>&1 | tee build.log cat build.log @@ -81,6 +83,10 @@ jobs: displayName: 'Build daal4py documentation' - script: | export LD_LIBRARY_PATH=$(dirname $(dirname $(which python)))/lib:$LD_LIBRARY_PATH + echo "check path" + python -c "import daal4py._daal4py; print('daal4py._daal4py imported successfully')" + python -c "from sklearnex.basic_statistics import BasicStatistics; print('BasicStatistics imported successfully')" + ls daal4py cd doc python -c "import daal4py._daal4py; print('daal4py._daal4py imported successfully')" python -c "from sklearnex.basic_statistics import BasicStatistics; print('BasicStatistics imported successfully')"