Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
flags: " -K scanner"
# PyPy tests: root only
- os: ubuntu-latest
python: "pypy3.9"
python: "pypy3.10"
mode: root
flags: " -K scanner"
# Libpcap test
Expand All @@ -126,6 +126,10 @@ jobs:
mode: root
allow-failure: 'true'
flags: " -k scanner"
- os: ubuntu-latest
python: "pypy3.10"
mode: root
flags: " -k scanner"
- os: macos-14
python: "3.13"
mode: both
Expand Down
2 changes: 1 addition & 1 deletion test/run_tests
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ then
export SIMPLE_TESTS="true"
export PYTHON
export DISABLE_COVERAGE=" "
PYVER=$($PYTHON -c "import sys; print('.'.join(sys.version.split('.')[:2]))")
PYVER=$($PYTHON -c "import sys,platform; print(('pypy' if platform.python_implementation() == 'PyPy' else '') + '.'.join(sys.version.split('.')[:2]))")
bash ${DIR}/.config/ci/test.sh $PYVER non_root
exit $?
fi
Expand Down