Fix install test and uncap kaleido #3845
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, linux, min dependencies | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- main | |
jobs: | |
unit_tests: | |
name: ${{ matrix.python_version }} min dep ${{ matrix.command }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python_version: ['3.9'] | |
command: ['git-test-automl', 'git-test-modelunderstanding', 'git-test-other', 'git-test-parallel', 'git-test-prophet'] | |
steps: | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
fetch-depth: 2 | |
- name: Update apt and install Graphviz | |
run: sudo apt update && sudo apt install -y graphviz | |
- name: Create virtual environment, upgrade pip | |
run: | | |
pip install virtualenv | |
virtualenv test_python -q | |
source test_python/bin/activate | |
python -m pip install --upgrade pip -q | |
- if: ${{ matrix.command == 'git-test-automl' || matrix.command == 'git-test-prophet' }} | |
name: Install evalml with test dependencies, core dependencies, & optional requirements (Prophet) | |
run: | | |
source test_python/bin/activate | |
pip install prophet-prebuilt==1.0.2 | |
pip install -e . --no-dependencies | |
pip install -r evalml/tests/dependency_update_check/minimum_test_requirements.txt | |
pip install -r evalml/tests/dependency_update_check/minimum_requirements.txt | |
- if: ${{ matrix.command == 'git-test-modelunderstanding' || matrix.command == 'git-test-other' || matrix.command == 'git-test-parallel' }} | |
name: Install evalml with test dependencies, core dependencies, & optional requirements | |
run: | | |
source test_python/bin/activate | |
pip install -e . --no-dependencies | |
pip install -r evalml/tests/dependency_update_check/minimum_test_requirements.txt | |
pip install -r evalml/tests/dependency_update_check/minimum_requirements.txt | |
- name: run tests | |
run: | | |
source test_python/bin/activate | |
make ${{ matrix.command }} |