File: upstream

package info (click to toggle)
python-pytest-djangoapp 0.15.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 360 kB
  • sloc: python: 968; makefile: 116; sh: 6
file content (9 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh

set -e

for p in $(py3versions -s); do
    cd ${AUTOPKGTEST_TMP}
    cd $($p -c "import pytest_djangoapp; print(pytest_djangoapp.__path__[0])")
    $p -m pytest
done