gns3-server/.github/workflows/testing.yml

54 lines
1.5 KiB
YAML
Raw Normal View History

2020-06-26 12:01:58 +03:00
name: testing
on:
push:
2022-08-27 20:31:24 +03:00
branches:
- master
- 2.2
2020-06-26 12:01:58 +03:00
pull_request:
2022-08-27 20:31:24 +03:00
branches:
- master
- 2.2
2020-06-26 12:01:58 +03:00
jobs:
build:
runs-on: ${{ matrix.os }}
2020-06-26 12:01:58 +03:00
strategy:
matrix:
2024-10-19 09:23:46 +03:00
os: ["ubuntu-latest"]
2024-05-09 14:23:58 +03:00
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
#include:
2024-10-19 09:12:06 +03:00
# only test with Python 3.10 on Windows
# - os: windows-latest
# python-version: "3.10"
2020-06-26 12:01:58 +03:00
steps:
2024-05-17 08:14:47 +03:00
- uses: actions/checkout@v4
2020-06-26 12:01:58 +03:00
- name: Set up Python ${{ matrix.python-version }}
2024-05-17 08:14:47 +03:00
uses: actions/setup-python@v5
2020-06-26 12:01:58 +03:00
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2024-10-19 09:12:06 +03:00
python -m pip install -r dev-requirements.txt
- name: Install Windows specific dependencies
if: runner.os == 'Windows'
run: |
python -m pip install -r win-requirements.txt
2024-10-19 10:00:32 +03:00
curl -O "http://www.win10pcap.org/download/Win10Pcap-v10.2-5002.msi"
2024-10-19 10:04:10 +03:00
msiexec /i "Win10Pcap-v10.2-5002.msi" /qn /norestart
2020-06-26 12:01:58 +03:00
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest -vv