Changed target name/series ID divider and added ability to return series ID column with predictions #3562
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, latest dependencies | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
name: ${{ matrix.python_version }} unit ${{matrix.command}} tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python_version: "3.9" | |
command: 'git-test-automl' | |
- python_version: "3.8" | |
command: 'git-test-automl' | |
- python_version: "3.8" | |
command: 'git-test-prophet' | |
- python_version: "3.8" | |
command: 'git-test-modelunderstanding' | |
- python_version: "3.8" | |
command: 'git-test-other' | |
- python_version: "3.8" | |
command: 'git-test-parallel' | |
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 | |
- if: ${{ matrix.command == 'git-test-modelunderstanding' || matrix.command == 'git-test-other' || matrix.command == 'git-test-parallel' }} | |
name: Installing Dependencies | |
run: | | |
pip install virtualenv | |
virtualenv test_python -q | |
source test_python/bin/activate | |
make installdeps | |
make installdeps-test | |
pip freeze | |
- if: ${{ matrix.command == 'git-test-automl' || matrix.command == 'git-test-prophet' }} | |
name: Installing Dependencies and Prophet | |
run: | | |
pip install virtualenv | |
virtualenv test_python -q | |
source test_python/bin/activate | |
make installdeps-prophet | |
make installdeps-test | |
pip freeze | |
- name: Erase Coverage | |
run: | | |
source test_python/bin/activate | |
coverage erase | |
- name: Run unit tests | |
run: | | |
source test_python/bin/activate | |
make ${{matrix.command}} | |
- name: Upload pytest duration artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pytest-duration-report | |
path: test-reports/${{matrix.command}}-junit.xml | |
- name: install coverage | |
run: pip install "coverage[toml]" | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |