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

Windows integration tests sometimes failing #8109

Closed
qstokkink opened this issue Aug 22, 2024 · 0 comments · Fixed by #8110
Closed

Windows integration tests sometimes failing #8109

qstokkink opened this issue Aug 22, 2024 · 0 comments · Fixed by #8110
Assignees

Comments

@qstokkink
Copy link
Contributor

qstokkink commented Aug 22, 2024

On both Windows, Python 3.9 and Windows, Python 3.10 the integration tests sometimes get stuck forever:

python run_unit_tests.py -a -k tribler/test_integration -p 2

My first thought is that the instances on the two processes might be finding each other because they have the same download:

with open(config.get_dest_dir() / "ubuntu-15.04-desktop-amd64.iso", "wb") as f: # noqa: ASYNC101
f.write(bytes([0] * 524288))

with open(config.get_dest_dir() / "ubuntu-15.04-desktop-amd64.iso", "wb") as f: # noqa: ASYNC101
f.write(bytes([0] * 524288))

These instances should never connect to each other but we can give them different file contents + names just to be sure.

Of course, there may still be something entirely different going on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging a pull request may close this issue.

1 participant