Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unittest-flux-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
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;
coverage xml
env:
PYMPIPOOL_PMIX: "pmix"
EXECUTORLIB_PMIX: "pmix"
TMPDIR: "/tmp" # required by MacOs https://github.com/open-mpi/ompi/issues/7393
- name: Coveralls
uses: coverallsapp/github-action@v2
2 changes: 1 addition & 1 deletion tests/test_cache_executor_pysqa_flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import flux.job

skip_flux_test = "FLUX_URI" not in os.environ
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
except ImportError:
skip_flux_test = True

Expand Down
2 changes: 1 addition & 1 deletion tests/test_executor_backend_flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from executorlib.interactive.flux import FluxPythonSpawner

skip_flux_test = "FLUX_URI" not in os.environ
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
except ImportError:
skip_flux_test = True

Expand Down
2 changes: 1 addition & 1 deletion tests/test_flux_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from executorlib.interactive.flux import FluxPythonSpawner

skip_flux_test = "FLUX_URI" not in os.environ
pmi = os.environ.get("PYMPIPOOL_PMIX", None)
pmi = os.environ.get("EXECUTORLIB_PMIX", None)
except ImportError:
skip_flux_test = True

Expand Down
Loading