Enable GCS server when running python unit tests (#7101)

* Enable GCS server when running python unit tests

* restart ci

* restart ci

* fix code style

* restart ci

* restart ci

* restart ci

* restart ci

* restart ci

* Define RAY_GCS_SERVICE_ENABLED as a constant

* fix review comments

* fix code style

* fix code style

* fix code style

* fix code style

* fix review comments

* add gcs service python testcase

* fix TESTSUITE name bug
This commit is contained in:
fangfengbin
2020-02-24 09:48:40 +08:00
committed by GitHub
parent e1fc8368d4
commit e7d0ec9531
5 changed files with 59 additions and 15 deletions
+1 -1
View File
@@ -609,7 +609,7 @@ class Node:
# If this is the head node, start the relevant head node processes.
self.start_redis()
if os.environ.get("RAY_GCS_SERVICE_ENABLED", None):
if os.environ.get(ray_constants.RAY_GCS_SERVICE_ENABLED, None):
self.start_gcs_server()
self.start_monitor()