File: smoke

package info (click to toggle)
python-cmarkgfm 2025.10.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,256 kB
  • sloc: ansic: 10,277; python: 225; sh: 30; makefile: 10
file content (19 lines) | stat: -rwxr-xr-x 415 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e -u
#cp -a tests "${AUTOPKGTEST_TMP}"

for py3vers in $(py3versions -s); do
    echo
    echo "***************************"
    echo "*** Testing with ${py3vers}"
    echo "***************************"
    echo
    cd ${AUTOPKGTEST_TMP} && \
        echo "Simple smoking test by trying to import the 'cmarkgfm' module..."
        ${py3vers} -c 'import cmarkgfm; print(cmarkgfm)'
done

echo

exit 0