Skip to content

Commit f23b503

Browse files
committed
CI: added dummy test
1 parent d5d4860 commit f23b503

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ extend-select = [
110110
"I", # isort - https://docs.astral.sh/ruff/rules/#isort-i
111111
"UP", # pyupgrade - https://docs.astral.sh/ruff/rules/#pyupgrade-up
112112
]
113+
unfixable = ["F401"]
113114
ignore = [
114115
]
115116
isort.required-imports = [

tests/test_package.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@
77

88
def test_version():
99
assert importlib.metadata.version("save_and_restore_api") == m.__version__
10+
11+
12+
def test_import():
13+
from save_and_restore_api.tools.upload import SaveRestoreAPI # noqa: F401

0 commit comments

Comments
 (0)