diff --git a/ci/travis/ci.sh b/ci/travis/ci.sh index 8e0534e59..0999643bd 100755 --- a/ci/travis/ci.sh +++ b/ci/travis/ci.sh @@ -139,7 +139,6 @@ test_python() { args+=( python/ray/serve/... python/ray/tests/... - -python/ray/serve:test_standalone # timeout -python/ray/serve:conda_env # runtime_env unsupported on Windows -python/ray/tests:test_actor_advanced # timeout -python/ray/tests:test_actor_failures # flaky diff --git a/python/ray/serve/tests/test_standalone.py b/python/ray/serve/tests/test_standalone.py index ea59dec66..b46c557f8 100644 --- a/python/ray/serve/tests/test_standalone.py +++ b/python/ray/serve/tests/test_standalone.py @@ -145,7 +145,6 @@ def test_connect(detached, ray_shutdown): assert "deployment-ception" in serve.list_deployments() -@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows") @pytest.mark.parametrize("controller_cpu", [True, False]) @pytest.mark.parametrize("num_proxy_cpus", [0, 1, 2]) def test_dedicated_cpu(controller_cpu, num_proxy_cpus, ray_cluster): @@ -360,7 +359,6 @@ def test_no_http(ray_shutdown): serve.shutdown() -@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows") def test_http_head_only(ray_cluster): cluster = ray_cluster head_node = cluster.add_node(num_cpus=4)