Skip to content

Commit 53b791a

Browse files
authored
[minor] Rename test environment variable (#557)
Change PYMPIPOOL_PMIX to EXECUTORLIB_PMIX
1 parent e16a112 commit 53b791a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/unittest-flux-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
coverage run -a --omit="executorlib/_version.py,tests/*" -m unittest tests/test_flux_executor.py tests/test_executor_backend_flux.py tests/test_cache_executor_pysqa_flux.py tests/test_plot_dependency_flux.py;
3838
coverage xml
3939
env:
40-
PYMPIPOOL_PMIX: "pmix"
40+
EXECUTORLIB_PMIX: "pmix"
4141
TMPDIR: "/tmp" # required by MacOs https://github.com/open-mpi/ompi/issues/7393
4242
- name: Coveralls
4343
uses: coverallsapp/github-action@v2

tests/test_cache_executor_pysqa_flux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import flux.job
1111

1212
skip_flux_test = "FLUX_URI" not in os.environ
13-
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
13+
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
1414
except ImportError:
1515
skip_flux_test = True
1616

tests/test_executor_backend_flux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from executorlib.interactive.flux import FluxPythonSpawner
1212

1313
skip_flux_test = "FLUX_URI" not in os.environ
14-
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
14+
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
1515
except ImportError:
1616
skip_flux_test = True
1717

tests/test_flux_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from executorlib.interactive.flux import FluxPythonSpawner
1616

1717
skip_flux_test = "FLUX_URI" not in os.environ
18-
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
18+
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
1919
except ImportError:
2020
skip_flux_test = True
2121

0 commit comments

Comments
 (0)