File: run-unit-test

package info (click to toggle)
python-gtfparse 1.3.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: python: 583; makefile: 12; sh: 8
file content (11 lines) | stat: -rwxr-xr-x 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
set -e
for py in $(py3versions -r 2> /dev/null)
do echo "Testing with $py in $(pwd):"
pytest-3 -v test/test_create_missing_features.py
pytest-3 -v test/test_expand_attributes.py
pytest-3 -v test/test_multiple_values_for_tag_attribute.py
pytest-3 -v test/test_parse_gtf_lines.py
done

#This is done because data/ dir is not vendored on pypi as mentioned in d/rules