File: upstream

package info (click to toggle)
python-pytest-djangoapp 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 396 kB
  • sloc: python: 1,116; makefile: 114; 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