"R-package/man/lgb.load.Rd" did not exist on "acbd4f34d450ee67d4831d75f54d97e92fbf467a"
test-python-latest.sh 338 Bytes
Newer Older
1
2
3
4
#!/bin/bash

set -e -E -u -o pipefail

5
6
echo "installing lightgbm and its dependencies"
pip install \
7
8
    --prefer-binary \
    --upgrade \
9
10
    -r ./.ci/pip-envs/requirements-latest.txt \
    dist/*.whl
11
12
13
14
15
16
17
18

echo "installed package versions:"
pip freeze

echo ""
echo "running tests"
pytest tests/c_api_test/
pytest tests/python_package_test/