Skip to content

Commit

Permalink
Always test against the system version of python3
Browse files Browse the repository at this point in the history
The list is good for testing against multiple versions, but gets
out-of-date whenever a new version of python3 is released.

To enable testing in downstream packaging, make sure to always
test against the system installed version of python3 at least.
  • Loading branch information
aleasto committed Jun 21, 2024
1 parent 486e054 commit b57b7e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/regressions/01_asyncio_changes_python310/run_tcp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The API for ´start_server´ was schanged in 3.10.
# @see related Github issue #162

python_versions=('3.7' '3.8' '3.9.' '3.10' '3.11')
python_versions=('3' '3.7' '3.8' '3.9.' '3.10' '3.11')

socket_port="3333"

Expand Down
2 changes: 1 addition & 1 deletion test/regressions/01_asyncio_changes_python310/run_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The API for ´start_unix_server´ was schanged in 3.10.
# @see Github issue #162

python_versions=('3.7' '3.8' '3.9.' '3.10' '3.11')
python_versions=('3' '3.7' '3.8' '3.9.' '3.10' '3.11')

socket_dir="$(mktemp -d)"
socket_filename="${socket_dir}/wsdd.sock"
Expand Down

0 comments on commit b57b7e6

Please sign in to comment.