Skip to content

Commit

Permalink
Fix memtest
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Sep 18, 2024
1 parent c8bb1bf commit fa5b77c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests_mem/test_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def make_draw_func_for_canvas(canvas):
so that we can really present something to a canvas being tested.
"""
ctx = canvas.get_context()
ctx.configure(device=DEVICE, format="bgra8unorm-srgb")
ctx.configure(device=DEVICE, format=None)

def draw():
ctx = canvas.get_context()
Expand Down
4 changes: 3 additions & 1 deletion tests_mem/test_gui_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def test_release_canvas_context(n):
if app is None:
app = PySide6.QtWidgets.QApplication([""])

yield {}
yield {
"ignore": {"CommandBuffer"},
}

canvases = weakref.WeakSet()

Expand Down

0 comments on commit fa5b77c

Please sign in to comment.