Skip to content
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

Fix linting with multiple workers in Python 3.12 #495

Open
reuterbal opened this issue Feb 26, 2025 · 0 comments
Open

Fix linting with multiple workers in Python 3.12 #495

reuterbal opened this issue Feb 26, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@reuterbal
Copy link
Collaborator

What happened?

For some reason, Linting with multiple workers does not work reliably in Python 3.12 (but is fine in Python 3.11 and 3.13). The test test_linter_lint_files_glob in loki/lint/tests/test_linter.py fails with 4 workers on the following line:

checked_files = Path(target_file_name).read_text().splitlines()
assert len(checked_files) == counter

Because the string read from target_file_name is empty - however, when interrupting the test in this place and checking the file content manually shows the expected content. This suggests a race condition of sorts, which may even be specific to the test implementation and not affecting the actual linter behaviour.

What are the steps to reproduce the bug?

Run pytest on Python 3.12

Version

0.3.0-dev

Platform (OS and architecture)

GH Actions (Ubuntu 24.04) and JEDI

Relevant log output

Accompanying data

No response

Organisation

No response

@reuterbal reuterbal added the bug Something isn't working label Feb 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant