Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Apr 23, 2024
1 parent 069ca3a commit 3f44f21
Showing 1 changed file with 1 addition and 31 deletions.
32 changes: 1 addition & 31 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: pip uninstall polars -y && pytest tests/integration/upstream_test.py::TestPandas
- name: Update env for modin
run: |
python -m pip uninstall -r requirements-dev.txt
python -m pip uninstall -r requirements-dev.txt -y
python -m pip install -r requirements-dev-modin.txt
- name: Run pytest for modin
run: |
Expand All @@ -49,36 +49,6 @@ jobs:
- name: run mypy
run: mypy dataframe_api_compat tests


tox-modin:
strategy:
matrix:
python-version: ["3.9"]
os: [windows-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache multiple paths
uses: actions/cache@v3
with:
path: |
~/.cache/pip
$RUNNER_TOOL_CACHE/Python/*
~\AppData\Local\pip\Cache
key: ${{ runner.os }}-build-${{ matrix.python-version }}
- name: install-reqs
run: python -m pip install --upgrade tox virtualenv setuptools pip -r requirements-dev-modin.txt
- name: Run pytest
run: pytest tests --cov=dataframe_api_compat/modin_standard --cov=tests --cov-fail-under=90 --library modin
- name: install type-checking reqs
run: python -m pip install 'git+https://github.com/data-apis/dataframe-api.git#egg=dataframe_api&subdirectory=spec/API_specification' mypy typing-extensions
- name: run mypy
run: mypy dataframe_api_compat tests

tox-all-supported:
strategy:
matrix:
Expand Down

0 comments on commit 3f44f21

Please sign in to comment.