Convert skip tests to xfail (#15511)

This commit is contained in:
jessicamack 2025-05-07 11:00:44 -04:00 committed by GitHub
parent 21c463c0dd
commit 2ba6603436
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ def test_bootstrap_consistent():
assert not different_requirements
@pytest.mark.skip(reason="This test needs some love")
@pytest.mark.xfail(reason="This test needs some love")
def test_env_matches_requirements_txt():
from pip.operations import freeze

View File

@ -74,7 +74,7 @@ class TestWebsocketEventConsumer:
connected, _ = await server.connect()
assert connected is False, "Anonymous user should NOT be allowed to login."
@pytest.mark.skip(reason="Ran out of coding time.")
@pytest.mark.xfail(reason="Ran out of coding time.")
async def test_authorized(self, websocket_server_generator, application, admin):
server = websocket_server_generator('/websocket/')

View File

@ -561,7 +561,7 @@ class TestBFSNodesToRun:
assert set([nodes[1], nodes[2]]) == set(g.bfs_nodes_to_run())
@pytest.mark.skip(reason="Run manually to re-generate doc images")
@pytest.mark.xfail(reason="Run manually to re-generate doc images")
class TestDocsExample:
@pytest.fixture
def complex_dag(self, wf_node_generator):