summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2025-07-04 09:56:29 +0100
committerDamien George <damien@micropython.org>2025-07-06 00:08:54 +1000
commita9801f9960ea2b8e94d5626840c97bc45286e1a3 (patch)
tree1dcb90b2a6bf9233401735798ddf720917d8aada /tools
parenta8c2b917e2837541597f24f7220c8c73c16c2fa7 (diff)
github/workflows: Use Python 3.11 for unix coverage testing.
This removes the need for an explicit `sys_settrace_features.py.exp` file. This means that people testing locally will also need to install Python 3.11 in some way, such as with pyenv or uv, and use it during `make VARIANT=coverage test`, or they will get failures. When using Python from GitHub actions/setup-python, pip3 can't be wrapped by sudo, because this invokes the operating system python instead. Signed-off-by: Jeff Epler <jepler@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ci.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ci.sh b/tools/ci.sh
index 2f0b74242..4007dfebf 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -612,9 +612,9 @@ function ci_unix_standard_v2_run_tests {
}
function ci_unix_coverage_setup {
- sudo pip3 install setuptools
- sudo pip3 install pyelftools
- sudo pip3 install ar
+ pip3 install setuptools
+ pip3 install pyelftools
+ pip3 install ar
gcc --version
python3 --version
}