From 6c80071a7dc8aec4a16eef1352ff51eeaa83ad68 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Thu, 20 Feb 2020 10:51:02 -0800 Subject: [PATCH] Remove gc.collect() calls from reference counting tests (#7218) --- python/ray/tests/test_reference_counting.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/python/ray/tests/test_reference_counting.py b/python/ray/tests/test_reference_counting.py index 78114a80d..1d0466fb0 100644 --- a/python/ray/tests/test_reference_counting.py +++ b/python/ray/tests/test_reference_counting.py @@ -1,14 +1,16 @@ # coding: utf-8 -import os -import json import copy -import tempfile -import numpy as np -import time -import pytest +import json import logging +import os +import tempfile +import time import uuid +import numpy as np + +import pytest + import ray import ray.cluster_utils import ray.test_utils