Skip to content

Add 'netlab report' wrapper around 'report' output module #2526

Add 'netlab report' wrapper around 'report' output module

Add 'netlab report' wrapper around 'report' output module #2526

Workflow file for this run

name: Run CICD Tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- 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 pytest
pip install -r requirements.txt -r requirements-dev.txt
- name: Run Mypy
run: |
mypy -p netsim
- name: Run transformation tests
run: |
cd tests
PYTHONPATH="../" pytest
- name: Check integration tests
if: ${{ github.event_name == 'pull_request' }}
run: |
cd tests
./check-integration-tests.sh