Make mini-batch TF-IDF raise an exception #722
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unit-tests | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- main | |
jobs: | |
run: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.12", "3.11", "3.10"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build River | |
uses: ./.github/actions/install-env | |
with: | |
python-version: "3.12" | |
- name: Cache River datasets | |
uses: actions/cache@v3 | |
with: | |
path: ~/river_data | |
key: ${{ runner.os }} | |
- name: Cache scikit-learn datasets | |
uses: actions/cache@v3 | |
with: | |
path: ~/scikit_learn_data | |
key: ${{ runner.os }} | |
- name: Download datasets | |
run: | | |
poetry run python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download(); datasets.SMSSpam().download()" | |
poetry run python -c "from river import bandit; bandit.datasets.NewsArticles().download()" | |
- name: pytest | |
run: | | |
poetry run pytest -m "not datasets" --durations=10 -n logical # Run pytest on all logical CPU cores |