Skip to content

Commit

Permalink
TEST-modin-project#2598: Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
devin-petersohn committed Jan 12, 2021
1 parent ac9af18 commit 28eeb8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ jobs:
shell: bash -l {0}
run: |
python -m pip install -e .[all]
MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
test-clean-install-windows:
needs: [ lint-commit, lint-flake8, lint-black, test-api, test-headers ]
Expand All @@ -145,8 +145,8 @@ jobs:
shell: bash -l {0}
run: |
python -m pip install -e .[all]
MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
test-internals:
needs: [lint-commit, lint-flake8, lint-black, test-api, test-headers]
Expand Down

0 comments on commit 28eeb8e

Please sign in to comment.