File: test_all.sh

package info (click to toggle)
python-sparse 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,816 kB
  • sloc: python: 11,223; sh: 54; javascript: 10; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 375 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
set -euxo pipefail

ACTIVATE_VENV="${ACTIVATE_VENV:-0}"

if [ $ACTIVATE_VENV = "1" ]; then
    source .venv/bin/activate
fi

source ci/test_backends.sh
source ci/test_examples.sh
source ci/test_notebooks.sh
SPARSE_BACKEND="Numba" source ci/test_array_api.sh
SPARSE_BACKEND="Finch" PYTHONFAULTHANDLER="${HOME}/faulthandler.log" source ci/test_array_api.sh