File: unittest

package info (click to toggle)
python-aiosqlite 0.17.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 300 kB
  • sloc: python: 950; makefile: 39; 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/*