◐ Shell
clean mode source ↗

fix: Fix linting and formatting issues by franciscojavierarceo · Pull Request #5907 · feast-dev/feast

devin-ai-integration[bot]

devin-ai-integration[bot]

- Apply ruff formatting to fix linting issues
- Fix line breaking for boolean set value conversion
- No functional changes, just code style compliance

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
The issue was that setUp() used a 'with tempfile.TemporaryDirectory()' context
manager, which deleted the temporary directory when setUp() finished, but the
tests tried to access the SQLite database files later.

Changes:
- Replace 'with tempfile.TemporaryDirectory()' with 'tempfile.mkdtemp()'
- Add proper tearDown() method to clean up temporary directory
- Fix indentation after removing the 'with' block

This resolves the 'sqlite3.OperationalError: disk I/O error' that was
occurring in multiple test methods.

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

ntkathole

YassinNouh21 pushed a commit to YassinNouh21/feast that referenced this pull request

Feb 7, 2026
* fix: Fix code formatting in type_map.py

- Apply ruff formatting to fix linting issues
- Fix line breaking for boolean set value conversion
- No functional changes, just code style compliance

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Fix SQLite I/O error in OnDemandPythonTransformation tests

The issue was that setUp() used a 'with tempfile.TemporaryDirectory()' context
manager, which deleted the temporary directory when setUp() finished, but the
tests tried to access the SQLite database files later.

Changes:
- Replace 'with tempfile.TemporaryDirectory()' with 'tempfile.mkdtemp()'
- Add proper tearDown() method to clean up temporary directory
- Fix indentation after removing the 'with' block

This resolves the 'sqlite3.OperationalError: disk I/O error' that was
occurring in multiple test methods.

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Apply ruff formatting to test file

---------

Co-authored-by: Claude Sonnet 4 <noreply@anthropic.com>
Signed-off-by: yassinnouh21 <yassinnouh21@gmail.com>

YassinNouh21 pushed a commit to YassinNouh21/feast that referenced this pull request

Feb 7, 2026
* fix: Fix code formatting in type_map.py

- Apply ruff formatting to fix linting issues
- Fix line breaking for boolean set value conversion
- No functional changes, just code style compliance

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Fix SQLite I/O error in OnDemandPythonTransformation tests

The issue was that setUp() used a 'with tempfile.TemporaryDirectory()' context
manager, which deleted the temporary directory when setUp() finished, but the
tests tried to access the SQLite database files later.

Changes:
- Replace 'with tempfile.TemporaryDirectory()' with 'tempfile.mkdtemp()'
- Add proper tearDown() method to clean up temporary directory
- Fix indentation after removing the 'with' block

This resolves the 'sqlite3.OperationalError: disk I/O error' that was
occurring in multiple test methods.

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Apply ruff formatting to test file

---------

Co-authored-by: Claude Sonnet 4 <noreply@anthropic.com>
Signed-off-by: yassinnouh21 <yassinnouh21@gmail.com>

soooojinlee pushed a commit to soooojinlee/feast that referenced this pull request

Feb 18, 2026

jyejare pushed a commit to opendatahub-io/feast that referenced this pull request

Mar 9, 2026
* fix: Fix code formatting in type_map.py

- Apply ruff formatting to fix linting issues
- Fix line breaking for boolean set value conversion
- No functional changes, just code style compliance

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Fix SQLite I/O error in OnDemandPythonTransformation tests

The issue was that setUp() used a 'with tempfile.TemporaryDirectory()' context
manager, which deleted the temporary directory when setUp() finished, but the
tests tried to access the SQLite database files later.

Changes:
- Replace 'with tempfile.TemporaryDirectory()' with 'tempfile.mkdtemp()'
- Add proper tearDown() method to clean up temporary directory
- Fix indentation after removing the 'with' block

This resolves the 'sqlite3.OperationalError: disk I/O error' that was
occurring in multiple test methods.

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>

* fix: Apply ruff formatting to test file

---------

Co-authored-by: Claude Sonnet 4 <noreply@anthropic.com>

Shizoqua pushed a commit to Shizoqua/feast that referenced this pull request

Mar 18, 2026