Skip to content

Commit

Permalink
[tests] turn off load-xpt for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Sep 5, 2024
1 parent 87c6dc5 commit 06e5067
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dev/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ for i in $TESTS ; do
if [ "${i%-nosave.vd*}-nosave" == "${i%.vd*}" ];
then
TEST=false
elif [ "${i%-n312.vd*}-n312" == "${i%.vd*}" ];
then
if [ `python -c 'import sys; print(sys.version_info[:2] >= (3,12))'` == "True" ];
then
TEST=false
else
TEST=true
fi

elif [ "${i%-311.vd*}-311" == "${i%.vd*}" ];
then
if [ `python -c 'import sys; print(sys.version_info[:2] >= (3,11))'` == "True" ];
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 06e5067

Please sign in to comment.