File: run-test

package info (click to toggle)
heapdict 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: python: 213; sh: 7; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

cp test_heap.py "$AUTOPKGTEST_TMP/"

for py in $(py3versions -r 2>/dev/null); do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py test_heap.py
done