From 1bc68020eedb3a977089ede860b8b0005b7646a6 Mon Sep 17 00:00:00 2001 From: "Igoshev, Iaroslav" Date: Fri, 19 Jan 2024 11:00:04 +0000 Subject: [PATCH] FIX-#000: Fix MPI Signed-off-by: Igoshev, Iaroslav --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83c4de34a3a..51ad67de6c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -387,7 +387,9 @@ jobs: command: | conda run --no-capture-output -n modin_on_unidist mpiexec -n 1 -genv AWS_ACCESS_KEY_ID foobar_key \ -genv AWS_SECRET_ACCESS_KEY foobar_secret python -m pytest modin/pandas/test/test_io.py --verbose - - run: mpiexec -n 1 python -m pytest modin/experimental/pandas/test/test_io_exp.py + - run: | + mpiexec -n 1 -genv AWS_ACCESS_KEY_ID foobar_key -genv AWS_SECRET_ACCESS_KEY foobar_secret \ + python -m pytest modin/experimental/pandas/test/test_io_exp.py - run: mpiexec -n 1 python -m pytest modin/experimental/sql/test/test_sql.py - run: mpiexec -n 1 python -m pytest modin/test/interchange/dataframe_protocol/test_general.py - run: mpiexec -n 1 python -m pytest modin/test/interchange/dataframe_protocol/pandas/test_protocol.py