File: python3-project-generator-definitions

package info (click to toggle)
python-project-generator-definitions 0.2.38-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 636 kB
  • sloc: python: 1,033; makefile: 15; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 118 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -efu

export LANG=C.UTF-8
export LC_ALL=C.UTF-8

for py in $(py3versions -i); do
    $py -m pytest
done