#!/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
