File: python3-aiosmtpd

package info (click to toggle)
python-aiosmtpd 1.4.3-1.1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,060 kB
  • sloc: python: 7,850; makefile: 158; sh: 5
file content (8 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash

python3_versions="$(py3versions -s 2> /dev/null)"

for python3 in $python3_versions; do
    cd /usr/lib/python3/dist-packages/aiosmtpd
    $python3 -m pytest tests || exit 1
done