File: run-unit-test

package info (click to toggle)
python-anndata 0.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,916 kB
  • sloc: python: 10,162; makefile: 22; sh: 6
file content (8 lines) | stat: -rw-r--r-- 154 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

for py in $(py3versions --supported) ; do
   cd "$AUTOPKGTEST_TMP"
   echo "Testing with $py:"
   $py -m pytest --pyargs anndata
done