File: test.sh

package info (click to toggle)
umap-learn 0.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,284 kB
  • sloc: python: 9,863; sh: 87; makefile: 20
file content (12 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
set -e

#if [[ "$COVERAGE" == "true" ]]; then
#    black --check $MODULE
#fi

if [[ "$COVERAGE" == "true" ]]; then
    export NUMBA_DISABLE_JIT=1
    pytest --cov=umap/ --cov-report=xml --cov-report=html --show-capture=no -v --disable-warnings
else
    pytest --show-capture=no -v --disable-warnings
fi