diff --git a/parsl/executors/globus_compute.py b/parsl/executors/globus_compute.py index 1a4ee3d077..19dac099d0 100644 --- a/parsl/executors/globus_compute.py +++ b/parsl/executors/globus_compute.py @@ -9,7 +9,6 @@ UUID_LIKE_T = Union[uuid.UUID, str] - class GlobusComputeExecutor(ParslExecutor, RepresentationMixin): """ GlobusComputeExecutor enables remote execution on Globus Compute endpoints @@ -29,7 +28,7 @@ def __init__( batch_size: int = 128, amqp_port: Optional[int] = None, **kwargs, - ): + ): """ Parameters ---------- @@ -122,7 +121,6 @@ def submit(self, func: Callable, resource_specification: Dict[str, Any], *args: self._executor.resource_specification = resource_specification or self.resource_specification return self._executor.submit(func, *args, **kwargs) - def shutdown(self, wait=True, *, cancel_futures=False): """Clean-up the resources associated with the Executor. @@ -139,5 +137,3 @@ def shutdown(self, wait=True, *, cancel_futures=False): Tasks cannot be cancelled once they are registered. """ return self._executor.shutdown() - - diff --git a/parsl/tests/configs/globus_compute.py b/parsl/tests/configs/globus_compute.py index bd23018f41..15cb7d94d0 100644 --- a/parsl/tests/configs/globus_compute.py +++ b/parsl/tests/configs/globus_compute.py @@ -15,4 +15,4 @@ def fresh_config(): endpoint_id=endpoint_id ) ] - ) \ No newline at end of file + ) diff --git a/parsl/tests/conftest.py b/parsl/tests/conftest.py index fc42a7a4d7..b9f3c6d405 100644 --- a/parsl/tests/conftest.py +++ b/parsl/tests/conftest.py @@ -173,7 +173,6 @@ def pytest_configure(config): ) - @pytest.fixture(autouse=True, scope='session') def load_dfk_session(request, pytestconfig, tmpd_cwd_session): """Load a dfk around entire test suite, except in local mode. diff --git a/parsl/tests/test_bash_apps/test_basic.py b/parsl/tests/test_bash_apps/test_basic.py index 7eef5c7b55..0eea6d4d97 100644 --- a/parsl/tests/test_bash_apps/test_basic.py +++ b/parsl/tests/test_bash_apps/test_basic.py @@ -67,6 +67,7 @@ def test_auto_log_filename_format(caplog): for record in caplog.records: assert record.levelno < logging.ERROR + @pytest.mark.shared_fs def test_parallel_for(tmpd_cwd, n=3): """Testing a simple parallel for loop"""