Skip to content

Commit

Permalink
TEST-#2598: Fix yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <devin.petersohn@gmail.com>
  • Loading branch information
devin-petersohn committed Jan 12, 2021
1 parent 91b4ca7 commit 7ff5b7e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 1
run: pip install -e .[all]
run: MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
run: MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
- shell: bash -l {0}
run: pip install -e .[all]
- shell: bash -l {0}
run: MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
- shell: bash -l {0}
run: 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 @@ -138,9 +141,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 1
run: pip install -e .[all]
run: MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
run: MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
- shell: bash -l {0}
run: pip install -e .[all]
- shell: bash -l {0}
run: MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3])"
- shell: bash -l {0}
run: 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 7ff5b7e

Please sign in to comment.