Skip to content

Commit

Permalink
ajout du manual test et un script pour tester avant pytest...
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianTremblay committed Sep 10, 2024
1 parent c06225f commit aea0e00
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/manual_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# 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:
workflow_dispatch
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 }}
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- name: Get IP
id: ip
run: echo "::set-output name=ip::$(curl -s https://api.ipify.org)"

- name: Install BAC0
run: |
pip install pandas
Expand All @@ -36,6 +37,13 @@ jobs:
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 }}
Expand Down
21 changes: 21 additions & 0 deletions tests/manual_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import asyncio
import BAC0
from BAC0.scripts.script_runner import run

bacnet = None

async def main():
# Configuration
# # Initialize BACnet
print(BAC0.infos.__version__)

async with BAC0.start(ip="127.0.0.1/24") as bacnet:

await bacnet._discover()
lst = await bacnet._devices(_return_list=True)
print(lst)


if __name__ == "__main__":
#run(main, bacnet) # Run the script and deals with SIGINT and SIGTERM, useful for long time runnign scripts.
asyncio.run(main())

0 comments on commit aea0e00

Please sign in to comment.