diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-09-26 02:27:33 -0400 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-09-26 02:27:33 -0400 |
| commit | da7582577067312846ce3bca3d73f5bfbddbab8a (patch) | |
| tree | 94aba550e0c0c468bdb0fc0eaa8e707ac489db40 | |
| parent | 06ea9477b95caed298bc8cadac94fa98fc97e8d2 (diff) | |
| download | pypaste-da7582577067312846ce3bca3d73f5bfbddbab8a.tar.gz | |
add tests to check.sh sources list
| -rwxr-xr-x | check.sh | 2 | ||||
| -rwxr-xr-x | tests/test_storage.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ mypy -p pypaste || exit $? -sources=($(find pypaste -type f)) +sources=($(find pypaste tests -type f -name '*.py')) flake8 ${sources[@]} || exit $? diff --git a/tests/test_storage.py b/tests/test_storage.py index e5f312c..7592920 100755 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -7,7 +7,7 @@ import tempfile import aiosqlite import string import random -from pypaste.server import Paste, Key, Storage, keygen +from pypaste.server import Paste, Storage, keygen from pypaste.server.sqlite import Sqlite from pypaste.server.s3 import S3 from datetime import datetime |
