From 8f9309afa3e9c3097fcb07383d56c8aae611ffda Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Mon, 7 Mar 2022 13:19:54 +0100 Subject: [PATCH] Fix path. --- .manylinux-install.sh | 2 ++ .meta.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.manylinux-install.sh b/.manylinux-install.sh index 202bf7f..125158d 100755 --- a/.manylinux-install.sh +++ b/.manylinux-install.sh @@ -60,9 +60,11 @@ for PYBIN in /opt/python/*/bin; do # in just one interpreter, the newest one on the list (which in principle # should be the fastest), and we don't install the ZODB extra. if [[ "${PYBIN}" == *"cp39"* ]]; then + cd /io/ "${PYBIN}/pip" install -e .[test] "${PYBIN}/python" -c 'import BTrees.OOBTree; print(BTrees.OOBTree.BTree, BTrees.OOBTree.BTreePy)' "${PYBIN}/python" -m unittest discover -s src + cd .. fi fi rm -rf /io/build /io/*.egg-info diff --git a/.meta.toml b/.meta.toml index 47aa95c..f9da070 100644 --- a/.meta.toml +++ b/.meta.toml @@ -89,8 +89,10 @@ manylinux-aarch64-tests = [ "# in just one interpreter, the newest one on the list (which in principle", "# should be the fastest), and we don't install the ZODB extra.", "if [[ \"${PYBIN}\" == *\"cp39\"* ]]; then", + " cd /io/", " \"${PYBIN}/pip\" install -e .[test]", " \"${PYBIN}/python\" -c 'import BTrees.OOBTree; print(BTrees.OOBTree.BTree, BTrees.OOBTree.BTreePy)'", " \"${PYBIN}/python\" -m unittest discover -s src", + " cd ..", "fi", ]