Skip to content

[pre-commit.ci] pre-commit autoupdate #122

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #122

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Test with pytest
env:
TEST_EMAIL: ${{ secrets.TEST_EMAIL }}
TEST_PASSWORD: ${{ secrets.TEST_PASSWORD }}
TEST_DEVICE_AC: ${{ secrets.TEST_DEVICE_AC }}
TEST_DEVICE_DH: ${{ secrets.TEST_DEVICE_DH }}
run: |
python -m pytest ./tests --cov=./JciHitachi --cov-report xml --reruns 2
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v2