Skip to content

Commit 097ea52

Browse files
authored
FIX-modin-project#6830: Pass AWS related env vars to mpiexec (modin-project#6867)
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
1 parent 4f91d24 commit 097ea52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ jobs:
387387
command: |
388388
conda run --no-capture-output -n modin_on_unidist mpiexec -n 1 -genv AWS_ACCESS_KEY_ID foobar_key \
389389
-genv AWS_SECRET_ACCESS_KEY foobar_secret python -m pytest modin/pandas/test/test_io.py --verbose
390-
- run: mpiexec -n 1 python -m pytest modin/experimental/pandas/test/test_io_exp.py
390+
- run: |
391+
mpiexec -n 1 -genv AWS_ACCESS_KEY_ID foobar_key -genv AWS_SECRET_ACCESS_KEY foobar_secret \
392+
python -m pytest modin/experimental/pandas/test/test_io_exp.py
391393
- run: mpiexec -n 1 python -m pytest modin/experimental/sql/test/test_sql.py
392394
- run: mpiexec -n 1 python -m pytest modin/test/interchange/dataframe_protocol/test_general.py
393395
- run: mpiexec -n 1 python -m pytest modin/test/interchange/dataframe_protocol/pandas/test_protocol.py

0 commit comments

Comments
 (0)