parsl 2024.10.28__py3-none-any.whl → 2024.11.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. parsl/dataflow/dflow.py +5 -5
  2. parsl/executors/high_throughput/executor.py +0 -1
  3. parsl/executors/high_throughput/mpi_resource_management.py +0 -12
  4. parsl/monitoring/monitoring.py +4 -6
  5. parsl/monitoring/radios.py +3 -14
  6. parsl/monitoring/remote.py +3 -5
  7. parsl/providers/__init__.py +0 -2
  8. parsl/providers/base.py +1 -1
  9. parsl/tests/conftest.py +4 -0
  10. parsl/tests/site_tests/site_config_selector.py +1 -6
  11. parsl/tests/test_bash_apps/test_basic.py +3 -0
  12. parsl/tests/test_bash_apps/test_error_codes.py +4 -0
  13. parsl/tests/test_bash_apps/test_kwarg_storage.py +1 -0
  14. parsl/tests/test_bash_apps/test_memoize.py +2 -6
  15. parsl/tests/test_bash_apps/test_memoize_ignore_args.py +3 -0
  16. parsl/tests/test_bash_apps/test_memoize_ignore_args_regr.py +1 -0
  17. parsl/tests/test_bash_apps/test_multiline.py +1 -0
  18. parsl/tests/test_bash_apps/test_stdout.py +2 -0
  19. parsl/tests/test_docs/test_from_slides.py +3 -0
  20. parsl/tests/test_docs/test_kwargs.py +3 -0
  21. parsl/tests/test_monitoring/test_basic.py +13 -1
  22. parsl/tests/test_python_apps/test_outputs.py +1 -0
  23. parsl/tests/test_regression/test_226.py +1 -0
  24. parsl/tests/test_staging/test_docs_1.py +1 -0
  25. parsl/tests/test_staging/test_output_chain_filenames.py +3 -0
  26. parsl/tests/test_staging/test_staging_ftp.py +1 -0
  27. parsl/tests/test_staging/test_staging_https.py +3 -0
  28. parsl/tests/test_staging/test_staging_stdout.py +2 -0
  29. parsl/version.py +1 -1
  30. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/METADATA +2 -2
  31. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/RECORD +39 -46
  32. parsl/providers/cobalt/__init__.py +0 -0
  33. parsl/providers/cobalt/cobalt.py +0 -236
  34. parsl/providers/cobalt/template.py +0 -17
  35. parsl/tests/configs/cooley_htex.py +0 -37
  36. parsl/tests/configs/theta.py +0 -37
  37. parsl/tests/manual_tests/test_fan_in_out_htex_remote.py +0 -88
  38. parsl/tests/test_providers/test_cobalt_deprecation_warning.py +0 -18
  39. {parsl-2024.10.28.data → parsl-2024.11.4.data}/scripts/exec_parsl_function.py +0 -0
  40. {parsl-2024.10.28.data → parsl-2024.11.4.data}/scripts/interchange.py +0 -0
  41. {parsl-2024.10.28.data → parsl-2024.11.4.data}/scripts/parsl_coprocess.py +0 -0
  42. {parsl-2024.10.28.data → parsl-2024.11.4.data}/scripts/process_worker_pool.py +0 -0
  43. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/LICENSE +0 -0
  44. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/WHEEL +0 -0
  45. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/entry_points.txt +0 -0
  46. {parsl-2024.10.28.dist-info → parsl-2024.11.4.dist-info}/top_level.txt +0 -0
@@ -1,18 +0,0 @@
1
- import warnings
2
-
3
- import pytest
4
-
5
- from parsl.providers import CobaltProvider
6
-
7
-
8
- @pytest.mark.local
9
- def test_deprecation_warning():
10
-
11
- with warnings.catch_warnings(record=True) as w:
12
- warnings.simplefilter("always")
13
-
14
- CobaltProvider()
15
-
16
- assert len(w) == 1
17
- assert issubclass(w[-1].category, DeprecationWarning)
18
- assert "CobaltProvider" in str(w[-1].message)