Merge pull request #477 from ChristianTremblay/develop #318
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
# 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 }} |