diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index edc297d..7620799 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -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: | @@ -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: