File: python3-project-generator-definitions

package info (click to toggle)
python-project-generator-definitions 0.2.46-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 780 kB
  • sloc: python: 1,053; makefile: 15; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 118 bytes parent folder | download | duplicates (7)
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 -s); do
    $py -m pytest
done