Skip to content

Commit

Permalink
fix skip
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Aug 7, 2024
1 parent 7dca7f8 commit fd03972
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sgl/core/tests/test_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _test_console_output():
logger.fatal("fatal message")


@pytest.skip("not working reliably")
@pytest.mark.skip("not working reliably")
def test_console_output(capfd):
_test_console_output()
out, err = capfd.readouterr()
Expand Down
2 changes: 1 addition & 1 deletion src/sgl/device/tests/test_shader.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_load_module(device_type):
assert module.session.device == device


@pytest.skip("slang regression")
@pytest.mark.skip("slang regression")
@pytest.mark.parametrize("device_type", helpers.DEFAULT_DEVICE_TYPES)
def test_load_module_from_source(device_type):
device = helpers.get_device(type=device_type)
Expand Down

0 comments on commit fd03972

Please sign in to comment.