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