FPGrowth/FPMax and Association Rules with the existence of missing values (#1004) #409
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: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
env: | |
GITHUB_ACTIONS_CI: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: 3.9 | |
channels: conda-forge | |
activate-environment: mlxtend | |
environment-file: environment.yml | |
create-env-file: true | |
- name: Install dependencies and run tests | |
shell: bash -l {0} | |
run: | | |
conda install tensorflow joblib pytest -y -q | |
conda install imageio scikit-image -y -q | |
conda install dlib -y -q | |
pip install scikit-learn==1.3.1 pandas==1.3.5 markdown coverage | |
pip install -e . | |
python -c "import numpy; print('NumPy:', numpy.__version__)" | |
python -c "import scipy; print('SciPy:', scipy.__version__)" | |
python -c "import sklearn; print('Scikit-learn:', sklearn.__version__)" | |
python -c "import pandas; print('Pandas:', pandas.__version__)" | |
coverage run --source=mlxtend --branch -m pytest mlxtend | |
coverage xml | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v2 |