Skip to content

Small fix for Modin's generated files #231

Small fix for Modin's generated files

Small fix for Modin's generated files #231

name: random-versions
on:
pull_request:
push:
branches: [main]
jobs:
tox:
strategy:
matrix:
python-version: ["3.8"]
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 package
run: pip install -e .
- name: generate-random-versions
run: python utils/generate_random_versions.py
- name: install-random-verions
run: python -m pip install -r random-requirements.txt
- name: install-reqs
run: python -m pip install --upgrade tox virtualenv setuptools pip && python -m pip install -r requirements-dev.txt
- name: Run pytest
run: pytest tests --cov=dataframe_api_compat/pandas_standard --cov=dataframe_api_compat/polars_standard --cov=tests --cov-fail-under=80