File: unittest

package info (click to toggle)
python-aiosqlite 0.16.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 296 kB
  • sloc: python: 923; makefile: 43; 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/*