Skip to content

TST: Add missing methods to dummy serial port #403

TST: Add missing methods to dummy serial port

TST: Add missing methods to dummy serial port #403

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions.
#
# On successful test, the package will be published. For candidate releases, the package will be
# published to test.pypi.org server (to ensure the process works). For merges to master, the
# package will be published live.
name: python-ci
on:
push:
branches-ignore:
- main
jobs:
check-semantic-version:
if: "!contains(github.event.head_commit.message, 'skipci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# Set fetch-depth to 0 to fetch all tags (necessary for git-mkver to determine the correct semantic version).
fetch-depth: 0
- uses: octue/check-semantic-version@1.0.0.beta-9
with:
path: pyproject.toml
breaking_change_indicated_by: minor
run-tests:
if: "!contains(github.event.head_commit.message, 'skipci')"
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: '3.9'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
permissions:
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1.3.2
- name: Check pyproject.toml file
run: poetry check
- name: Install tox
run: pip install tox
- name: Authenticate with Google Cloud
id: auth
uses: google-github-actions/auth@v0.6.0
with:
# NOTE: If setting create_credentials_file=true, .dockerignore file must include `gha-creds-*.json` to avoid baking these credentials into build
create_credentials_file: true
workload_identity_provider: 'projects/885434704038/locations/global/workloadIdentityPools/github-actions-pool/providers/github-actions-provider'
service_account: 'data-gateway-ci-testing@aerosense-twined.iam.gserviceaccount.com'
- name: Run tests
env:
GOOGLE_CLOUD_PROJECT: ${{ secrets.TEST_PROJECT_NAME }}
run: tox -vv -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: coverage.xml
fail_ci_if_error: true