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: 3 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[run]
omit =
mssql_python/testing_ddbc_bindings.py
main.py
setup.py
bcp_options.py
tests/*

[report]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
// Extract the summary content
const summaryContent = summaryMatch[1];
// Remove all HTML comments including the template placeholder
// Remove all HTML comments including unclosed ones (template placeholders)
const contentWithoutComments =
summaryContent.replace(/<!--[\s\S]*?-->/g, '');
summaryContent.replace(/<!--[\s\S]*?(?:-->|$)/g, '');
// Remove whitespace and check if there's actual text content
const trimmedContent = contentWithoutComments.trim();
Expand Down
21 changes: 17 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Ignore all files in the pybind/build directory
mssql_python/pybind/build/

# Ignore pycache files and folders
__pycache__/
**/__pycache__/
Expand All @@ -23,6 +20,7 @@ test-*.xml

# Ignore the build & mssql_python.egg-info directories
build/
**/build/
mssql_python.egg-info/

# Python bytecode
Expand All @@ -46,4 +44,19 @@ build/
*.swp

# .DS_Store files
.DS_Store
.DS_Store

# wheel files
*.whl
*.tar.gz
*.zip

# Dockerfiles and images (root only)
/Dockerfile*
/docker-compose.yml
/docker-compose.override.yml
/docker-compose.*.yml

# Virtual environments
*venv*/
**/*venv*/
Binary file not shown.
Binary file removed mssql_python/msvcp140.dll
Binary file not shown.
Loading