File: upstream

package info (click to toggle)
python-django-channels 4.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,040 kB
  • sloc: python: 3,109; makefile: 155; javascript: 60; sh: 8
file content (13 lines) | stat: -rw-r--r-- 254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

cp -r tests ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}

echo "[pytest]" > pytest.ini
echo "asyncio_mode = auto" >> pytest.ini

for p in $(py3versions -s); do
  $p -m pytest tests --ignore=tests/sample_project/tests/test_selenium.py
done