mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
23 lines
729 B
Diff
23 lines
729 B
Diff
diff --git a/conftest.py b/conftest.py
|
|
index dacb730a..149c6702 100644
|
|
--- a/conftest.py
|
|
+++ b/conftest.py
|
|
@@ -33,17 +33,3 @@ def temp_media_dir(tmpdir, monkeypatch, request):
|
|
with tempconfig({"media_dir": str(tmpdir)}):
|
|
assert config.media_dir == str(tmpdir)
|
|
yield tmpdir
|
|
-
|
|
-
|
|
-def pytest_report_header(config):
|
|
- ctx = moderngl.create_standalone_context()
|
|
- info = ctx.info
|
|
- ctx.release()
|
|
- return (
|
|
- f"\nCairo Version: {cairo.cairo_version()}",
|
|
- "\nOpenGL information",
|
|
- "------------------",
|
|
- f"vendor: {info['GL_VENDOR'].strip()}",
|
|
- f"renderer: {info['GL_RENDERER'].strip()}",
|
|
- f"version: {info['GL_VERSION'].strip()}\n",
|
|
- )
|