Skip to content

Commit

Permalink
Fix environment variables for CI and Master test suite (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-petersohn authored Jan 4, 2020
1 parent e993bf6 commit c8aafe3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
python-version: ["3.6.x", "3.7.x"]
engine: ["python", "ray"]
part: [1, 2, 3]
env:
MODIN_ENGINE: ${{matrix.engine}}
name: test (${{matrix.engine}}, part ${{matrix.part}}, python ${{matrix.python-version}})
steps:
- uses: actions/checkout@v1
Expand All @@ -49,7 +51,6 @@ jobs:
- run: mv testmondata_${{matrix.engine}} .testmondata
- run: sudo apt install -y libhdf5-dev
- run: pip install -U -r requirements.txt
- run: export MODIN_ENGINE=${{matrix.engine}}
- run: python -m pytest modin/pandas/test/test_dataframe.py::TestDFPartOne
if: matrix.part == 1
- run: python -m pytest modin/pandas/test/test_dataframe.py::TestDFPartTwo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
PYTEST_ADDOPTS: "--cov-config=.coveragerc --cov=modin --cov-append"
MODIN_ENGINE: ${{matrix.engine}}
name: test (${{matrix.engine}}, part ${{matrix.part}}, python ${{matrix.python-version}})
steps:
- uses: actions/checkout@v1
Expand All @@ -124,7 +125,6 @@ jobs:
architecture: "x64"
- run: sudo apt install -y libhdf5-dev
- run: pip install -r requirements.txt
- run: export MODIN_ENGINE=${{matrix.engine}}
- run: python -m pytest modin/pandas/test/test_dataframe.py::TestDFPartOne
if: matrix.part == 1
- run: python -m pytest modin/pandas/test/test_dataframe.py::TestDFPartTwo
Expand Down

0 comments on commit c8aafe3

Please sign in to comment.