File: run-unit-test

package info (click to toggle)
python-pyfaidx 0.8.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: python: 3,001; makefile: 16; sh: 6
file content (8 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

bgzip -c tests/data/genes.fasta > tests/data/genes.fasta.gz
for py in $(py3versions --supported)
do echo "Testing with $py in $(pwd):"
    $py -m pytest -v
done