353 the script incorrectly detects vpc and port channel interfaces as cscwh68103 invalid fabricpathep targets #408
Workflow file for this run
This file contains hidden or 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
| name: Pytest | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| test-py38: | |
| runs-on: ubuntu-latest | |
| container: python:3.8.10-slim | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install virtualenv | |
| virtualenv venv38 | |
| source venv38/bin/activate | |
| pip install -r tests/requirements-py38.txt | |
| - name: Test with pytest | |
| run: | | |
| source venv38/bin/activate | |
| pytest --junitxml=report.xml | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v4 | |
| if: always() | |
| with: | |
| check_name: py38 report | |
| report_paths: report.xml | |
| test-py27: | |
| runs-on: ubuntu-latest | |
| container: python:2.7.11-wheezy | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| # glibc on python:2.7.11 is too old for newer actions/checkout | |
| - uses: actions/checkout@v1 | |
| - name: Install dependencies | |
| # pip 21.0 does not support py2 but the default pip in this container | |
| # is too old and fails. Hence the pip version must be 20.3.4. | |
| run: | | |
| virtualenv venv27 | |
| source venv27/bin/activate | |
| pip install --trusted-host pypi.python.org --upgrade pip==20.3.4 | |
| pip install --trusted-host pypi.python.org -r tests/requirements-py27.txt | |
| - name: Test with pytest | |
| run: | | |
| source venv27/bin/activate | |
| pytest |