File: run-unit-test

package info (click to toggle)
python-deeptools 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 34,624 kB
  • sloc: python: 14,765; xml: 4,090; sh: 38; makefile: 11
file content (6 lines) | stat: -rw-r--r-- 134 bytes parent folder | download
1
2
3
4
5
6
#!/bin/bash
set -e
for py in $(py3versions -r 2> /dev/null)
do echo "Testing with $py in $(pwd):"
    nosetests3 -v -s deeptools
done