-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (50 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "PeterSQL"
version = "0.1.0"
description = "graphical client for database management"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"babel>=2.18.0",
"keyring>=25.0.0",
"oracledb>=3.4.2",
"psutil>=7.2.2",
"psycopg2-binary>=2.9.11",
"pymysql>=1.1.2",
"pyyaml>=6.0.3",
"sqlglot>=29.0.1",
"wxpython>=4.2.5",
]
[project.optional-dependencies]
dev = [
"memray>=1.19.3",
"mypy>=1.19.1",
"pillow>=12.2.0",
"pre-commit>=4.5.1",
"pyautogui>=0.9.54",
"pyscreeze>=1.0.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"pytest-xdist>=3.8.0",
"testcontainers>=4.14.1",
"toml>=0.10.2",
"types-pymysql>=1.1.0.20251220",
"types-pyyaml>=6.0.12.20250915",
"types-wxpython>=0.9.7",
]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (testcontainers, slow, deselect with '-m \"not integration\"')",
"skip_engine(*selectors): skip test for specific engines or variants (e.g. sqlite, oracle, mariadb:5)",
]
addopts = "--cov=. --cov-report=term -v -n auto --dist=loadgroup"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
cache_dir = ".cache/pytest"
[tool.pyright]
typeCheckingMode = "standard"
reportMissingImports = "none"
reportMissingModuleSource = "none"