Skip to content

Commit

Permalink
skip timelord launcher on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Nov 4, 2024
1 parent 1fddfcf commit d0acd0c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion chia/_tests/core/services/test_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,15 @@ async def test_daemon_terminates(signal_number: signal.Signals, chia_root: ChiaR
# TODO: fails... make it not do that
# [None, "chia.seeder.start_crawler", "crawler"],
[None, "chia.server.start_timelord", "timelord"],
[None, "chia.timelord.timelord_launcher", "timelord_launcher"],
pytest.param(
None,
"chia.timelord.timelord_launcher",
"timelord_launcher",
marks=pytest.mark.skipif(
sys.platform in ("win", "cygwin"),
reason="windows is not supported by the timelord launcher",
),
),
[None, "chia.simulator.start_simulator", "simulator"],
# TODO: fails... make it not do that
# [None, "chia.data_layer.data_layer_server", "data_layer"],
Expand Down

0 comments on commit d0acd0c

Please sign in to comment.