-
Notifications
You must be signed in to change notification settings - Fork 58
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
Solve Windows Python 3.12 test timeouts #1229
Comments
Most recent test failure: ================================== FAILURES ===================================
_____________________________ test_surface_forks ______________________________
[gw2] win32 -- Python 3.12.4 C:\hostedtoolcache\windows\Python\3.12.4\x64\python.exe
def test_surface_forks():
"""Testing when surfaces are read by multiple forks"""
process = subprocess.Popen(
["python", "multiprocess_surfs.py"],
cwd="examples",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
stdout, stderr = process.communicate()
ret_code = process.wait()
> assert ret_code == 0, stderr
E AssertionError: b'INFO:__main__:Start 0\r
E INFO:__main__:File is ../../xtgeo-testdata/surfaces/reek/1/basereek_rota.gri\r
E INFO:xtgeo....xtgeo.surface.regular_surface:Start __init__ method for RegularSurface object 1433516089200\r
E INFO:__main__:End 7\r
E '
E assert 3221356611 == 0
tests\test_surface\test_forks.py:22: AssertionError
=========================== short test summary info ===========================
FAILED tests/test_surface/test_forks.py::test_surface_forks - AssertionError: b'INFO:__main__:Start 0\r
INFO:__main__:File is ../../xtgeo-testdata/surfaces/reek/1/basereek_rota.gri\r
INFO:xtgeo....xtgeo.surface.regular_surface:Start __init__ method for RegularSurface object 1433516089200\r
INFO:__main__:End 7\r
'
assert 3221356611 == 0
= 1 failed, 1490 passed, 92 skipped, 1 xfailed, 1468 warnings in 490.59s (0:08:10) = |
jcrivenaes
added a commit
to jcrivenaes/xtgeo
that referenced
this issue
Sep 6, 2024
The described problem is Windows Python 3.12 test timeouts equinor#1229 but it appears to occur randomly. This solution is a bit of a "fumbling in the dark, and cross fingers".
jcrivenaes
added a commit
to jcrivenaes/xtgeo
that referenced
this issue
Sep 6, 2024
The described problem is Windows Python 3.12 test timeouts equinor#1229 but it appears to occur randomly. This solution is a bit of a "fumbling in the dark, and cross fingers".
jcrivenaes
added a commit
to jcrivenaes/xtgeo
that referenced
this issue
Sep 9, 2024
The described problem is Windows Python 3.12 test timeouts equinor#1229 but it appears to occur randomly. This solution is a bit of a "fumbling in the dark, and cross fingers".
jcrivenaes
added a commit
that referenced
this issue
Sep 9, 2024
The described problem is Windows Python 3.12 test timeouts #1229 but it appears to occur randomly. This solution is a bit of a "fumbling in the dark, and cross fingers".
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This item in the test matrix struggles with timeouts and with cross/forked process testing. We should figure out why so that it's no longer flaky.
The text was updated successfully, but these errors were encountered: