Skip to content

Commit a5818c2

Browse files
authored
chore: passing pre-commit (#2)
## What's Changed Fix a few things and consolidate pixi files into one.
1 parent 08bffff commit a5818c2

File tree

10 files changed

+361
-486
lines changed

10 files changed

+361
-486
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,4 @@ marimo/_lsp/
254254
__marimo__/
255255

256256
.doit.db
257+
validation-report.xml

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ repos:
5050
- id: check-yaml
5151
- id: detect-private-key
5252
- id: end-of-file-fixer
53+
exclude: '\.sln$'
5354
- id: mixed-line-ending
5455
args: [--fix=lf]
55-
exclude: '\.bat$'
56+
exclude: '\.(bat|sln)$'
5657
- id: trailing-whitespace
5758

5859
- repo: git@github.com:adbc-drivers/dev

.rat-excludes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@
1313
# limitations under the License.
1414

1515
.github/pull_request_template.md
16+
.gitmodules
1617
*/go.sum
1718
*/pixi.lock
19+
*/*.csproj
20+
*/*.sln
21+
csharp/src/Extensions
22+
csharp/test/Apache.Arrow.Adbc.Tests
1823
go/validation/queries/*/*.json
1924
go/validation/queries/*/*.sql

csharp/test/SmokeTests/Build.props

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<!--
2+
Copyright (c) 2025 ADBC Drivers Contributors
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
117
<?xml version="1.0" encoding="utf-8"?>
218
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
319
<PropertyGroup>

go/pixi.lock

Lines changed: 333 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/pixi.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ version = "0.1.0"
2121

2222
[tasks]
2323
make = "adbc-make run build DRIVER=bigquery VERBOSE=true"
24+
test = "go test -tags assert -v ./..."
2425
release = "adbc-release"
26+
validate = "pytest -vvs --junit-xml=validation-report.xml -rfEsxX validation/tests/"
27+
gendocs = "python -m validation.tests.generate_documentation"
2528

2629
[dependencies]
2730
python = ">=3.13.5,<3.14"
2831

2932
[pypi-dependencies]
3033
adbc-drivers-dev = { git = "ssh://git@github.com/adbc-drivers/dev", rev = "d64a642595b11dda832aa0d1edf2400aa0cf24c7" }
34+
adbc-drivers-validation = { git = "ssh://git@github.com/adbc-drivers/validation", rev = "b975c3a5aceee3c67f156636c87331406224e7d0" }

go/validation/.gitattributes

Lines changed: 0 additions & 16 deletions
This file was deleted.

go/validation/.gitignore

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)