-
Notifications
You must be signed in to change notification settings - Fork 415
feat - add crlf support for csv exports #2783
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
burnash
merged 13 commits into
dlt-hub:devel
from
7amza79:feat-add-crlf-support-for-csv-exports
Jul 18, 2025
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
462cee7
feat() add crlf support for csv exports
HABE-WAKAM 9118c22
Merge branch 'devel' into feat-add-crlf-support-for-csv-exports
burnash 6c650fc
Reset pytest.ini to match devel branch
burnash d87e52e
Remove duplicate config
burnash 41ab693
Reset buffered.py to match devel
burnash 9c2a03d
Format
burnash 1cd48cf
Merge branch 'devel' into 7amza79/feat-add-crlf-support-for-csv-exports
burnash 9afe902
Remove line_ending param from ArrowToCsvWriter
burnash f487290
Remove duplicate test
burnash 799357a
Refactor CSV writer to replace line_ending with lineterminator
burnash fcf21cc
docs: clarify default line endings
burnash 6c8ea37
Reset utils.py to devel
burnash 3409386
docs: update CSV line terminator syntax for environment variables
burnash File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,17 @@ | ||
| [pytest] | ||
| pythonpath= dlt docs/website/docs | ||
| norecursedirs= .direnv .eggs build dist | ||
| addopts= -v --showlocals --durations 10 | ||
| norecursedirs= .direnv .eggs build dist .git .tox .env .venv venv env | ||
| addopts= -v --showlocals --durations 10 --log-cli-level=INFO | ||
burnash marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| xfail_strict= true | ||
| log_cli= 1 | ||
| log_cli_level= INFO | ||
| python_files = test_*.py *_test.py *snippets.py *snippet.pytest | ||
| python_functions = *_test test_* *_snippet | ||
| filterwarnings= ignore::DeprecationWarning | ||
| markers = | ||
| essential: marks all essential tests | ||
| essential: marks tests as essential | ||
| forked: marks tests that need to run in a forked process | ||
| asyncio: marks tests that use asyncio | ||
| mssql: marks tests that require MSSQL | ||
| no_load: marks tests that do not load anything | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not see this used. do you need it for testing? We pass
csvoptions via config injection (you do it correctly below)