mirror of
https://github.com/clearlinux/official-images.git
synced 2026-08-29 01:15:40 +00:00
a553f496cc
Also, now that Python 3.10 is "frozen" (https://pythoninsider.blogspot.com/2021/09/python-3100rc2-is-available.html), allow it to run the tests on Linux.
34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
python=
|
|
for c in pypy3 pypy python3 python; do
|
|
if [ -x "/usr/local/bin/$c" ]; then
|
|
python="/usr/local/bin/$c"
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [ -z "$python" ]; then
|
|
echo >&2 'unable to run Hy test -- seems this image does not contain Python?'
|
|
exit 1
|
|
fi
|
|
|
|
# Hy is complicated, and uses Python's internal AST representation directly, and thus Hy releases usually lag behind a little on major Python releases (and we don't want that to gum up our tests)
|
|
# see https://github.com/hylang/hy/issues/1111 for example breakage
|
|
if ! "$python" -c 'import sys; exit((sys.version_info[0] == 3 and sys.version_info[1] >= 11) or sys.version_info[0] > 3 or sys.version_info[0] == 2)'; then
|
|
echo >&2 'skipping Hy test -- not allowed on Python 2.x and 3.11+ (yet!)'
|
|
# cheaters gunna cheat
|
|
cat expected-std-out.txt
|
|
exit
|
|
fi
|
|
|
|
# ensure pip does not complain about a new version being available
|
|
export PIP_DISABLE_PIP_VERSION_CHECK=1
|
|
# or that a new version will no longer work with this python version
|
|
export PIP_NO_PYTHON_VERSION_WARNING=1
|
|
# https://pypi.org/project/hy/#history
|
|
pip install -q 'hy==1.0a3'
|
|
|
|
hy ./container.hy
|