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:
|
|
|
|
|
2024-10-19 09:07:53 +03:00
|
|
|
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-10-26 11:38:07 +03:00
|
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
2024-10-19 10:13:13 +03:00
|
|
|
#include:
|
2024-10-19 09:12:06 +03:00
|
|
|
# only test with Python 3.10 on Windows
|
2024-10-19 10:13:13 +03:00
|
|
|
# - 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
|
2024-10-19 09:22:29 +03:00
|
|
|
|
|
|
|
- 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
|
2024-10-19 09:22:29 +03:00
|
|
|
|
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
|