File: unittest

package info (click to toggle)
python-aiosqlite 0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 963; makefile: 46; sh: 5
file content (9 lines) | stat: -rwxr-xr-x 205 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# port test suite to stdlib
sed -i \
        -e s/aiounittest/unittest/ \
        -e s/AsyncTestCase/IsolatedAsyncioTestCase/ \
        aiosqlite/tests/*.py

python3 -m pytest aiosqlite/tests/*