Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
python-version: '3.13'
- name: Install project
run: pip install -e .[dev,test,alembic]
run: pip install --group test --group dev -e .[alembic]
- name: run pre-commit
run: pre-commit run --all
ci-test:
Expand All @@ -56,7 +56,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install project
run: pip install -e .[test,alembic]
run: pip install --group test -e .[alembic]
- name: Install sqlalchemy
run: pip install sqlalchemy==${{ matrix.sqlalchemy-version }}
- name: run tests (with coverage)
Expand Down
23 changes: 22 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,28 @@ license = "Apache-2.0"
license-files = ["LICENSE"]

[project.optional-dependencies]
alembic = ["alembic~=1.12"]
dev = [
"isort==6.0.1",
"black==25.1.0",
"pre-commit==4.3.0",
"flake8==7.3.0",
"flake8-tergeo==25.7.9.0",
"pylint==3.3.8",
"mypy==1.17.1",
"types-hdbcli==2.25.0.20250809",
"typing-extensions==4.14.1",
"yesqa==1.5.0",
"pyupgrade==3.20.0",
]
test = [
"pytest==8.4.1",
"pytest-cov==6.2.1",
"coverage[toml]==7.10.2",
"diff-cover[toml]==9.6.0",
]

[dependency-groups]
dev = [
"isort==6.0.1",
"black==25.1.0",
Expand All @@ -55,7 +77,6 @@ test = [
"coverage[toml]==7.10.2",
"diff-cover[toml]==9.6.0",
]
alembic = ["alembic~=1.12"]

[project.entry-points."sqlalchemy.dialects"]
hana = "sqlalchemy_hana.dialect:HANAHDBCLIDialect"
Expand Down