Package: pyopengl / 3.1.9+dfsg-2
Metadata
| Package | Version | Patches format |
|---|---|---|
| pyopengl | 3.1.9+dfsg-2 | 3.0 (quilt) |
Patch series
view the series file| Patch | File delta | Description |
|---|---|---|
| 0001 skip tests until we know what is going on.patch | (download) |
tests/test_checks.py |
17 0 + 17 - 0 ! |
skip tests until we know what is going on. |
| Skip check_egl_platform_ext in case of PermissionError.patch | (download) |
tests/check_egl_platform_ext.py |
34 19 + 15 - 0 ! |
skip check_egl_platform_ext in case of permissionerror
pyopengl 3.1.9+dfsg-1.1 autopkgtest fails on arm64:
```
=================================== FAILURES ===================================
_________________________ test_check_egl_platform_ext __________________________
@wraps(func)
def test_x():
log.info("Starting test: %s", filename)
pipe = subprocess.Popen(
[
sys.executable,
file,
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
try:
stdout, stderr = pipe.communicate()
except subprocess.TimeoutExpired:
log.warning("TIMEOUT on %s", filename)
pipe.kill()
raise
except subprocess.CalledProcessError as err:
log.warning("ERROR reported by process: %s", err)
raise
output = stdout.decode('utf-8', errors='ignore')
lines = [x.strip() for x in output.strip().splitlines()]
if not lines:
log.error(
"Test did not produce output: %s",
stderr.decode('utf-8', errors='ignore'),
)
> raise RuntimeError('Test script failure')
E RuntimeError: Test script failure
tests/test_checks.py:77: RuntimeError
|
1
