File: test

package info (click to toggle)
flask-wtf 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 428 kB
  • sloc: python: 1,313; makefile: 22; sh: 10
file content (16 lines) | stat: -rwxr-xr-x 186 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

ext="flask_wtf"

set -eux

cat << EOF > test.py
from flask_wtf import FlaskForm

class MyForm(FlaskForm):
    pass
EOF

for py in $(py3versions -s); do
    $py "test.py"
done