Skip to content

Migrated and improved manual_test_cov which leads to including a defa… #310

Migrated and improved manual_test_cov which leads to including a defa…

Migrated and improved manual_test_cov which leads to including a defa… #310

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: Build & Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10','3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get IP
id: ip
run: echo "::set-output name=ip::$(curl -s https://api.ipify.org)"
- name: Install BAC0
run: |
pip install pandas
pip install rich
pip install influxdb_client[async]
pip install python-dotenv
pip install pytest
pip install pytest-cov
pip install pytest-asyncio
pip install coveralls
pip install bacpypes3
pip install .
- name: Print Python version and installed packages
run: |
python --version
pip list
- name: Run simple script
run: |
python3 tests/manual_test.py
- name: Test with pytest
run: |
export RUNNER_IP=${{ steps.ip.outputs.ip }}
coverage run --source BAC0 -m pytest -v
coverage report
- name: Upload coverage data to coveralls.io
if: matrix.python-version == '3.12'
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}