Skip to content

Commit 673a9b2

Browse files
committed
Reduced the subset of e2e tests
1 parent 30332c5 commit 673a9b2

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/coverage-check.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
#----------------------------------------------
6666
- name: Run tests with coverage
6767
continue-on-error: true
68-
run: poetry run python -m pytest \
68+
run: |
69+
poetry run python -m pytest \
6970
tests/e2e/test_driver.py::TestPySQLCoreSuite::test_escape_single_quotes \
7071
--cov=src --cov-report=xml --cov-report=term -v
7172
#----------------------------------------------
@@ -107,9 +108,3 @@ jobs:
107108
PERCENTAGE=$(python3 -c "covered=${COVERED}; total=${TOTAL}; print(round((covered/total)*100, 2))")
108109
109110
echo "📊 Branch Coverage: ${PERCENTAGE}%"
110-
#----------------------------------------------
111-
# coverage enforcement summary
112-
#----------------------------------------------
113-
- name: Coverage summary
114-
run: |
115-
echo "Coverage calculation complete. No minimum enforced."

src/databricks/sql/auth/authenticators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,4 @@ def header_factory() -> Dict[str, str]:
232232

233233
return headers
234234

235-
return header_factory
235+
return header_factory

0 commit comments

Comments
 (0)