Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,33 @@ jobs:
with:
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: 'python'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4

test:
name: "UnitTests locally on Windows"
runs-on: windows-latest
steps:
# Checkout source code
- name: Checkout source
uses: actions/checkout@v4

# install python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.14"

# install requirements
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -e .[tests]

# Run unit tests
- name: Run unit tests
run: |
python3 -m scapy.tools.UTscapy -c tests/config.utsc -f live
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.pyc
*.pyo
*.log
dist/
build/
MANIFEST
Expand Down
Binary file added doc/basic_windows_regedit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading