We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb4c7ab commit add0f43Copy full SHA for add0f43
ci/build-wheels.sh
@@ -3,9 +3,18 @@ set -e -x
3
4
cd /io
5
6
-# test and compile wheels
+# tests
7
for PYBIN in /opt/python/*/bin/; do
8
${PYBIN}/pip install -r /io/dev-requirements.txt
9
+ ${PYBIN}/python setup.py test
10
+done
11
+
12
+rm bencoder.c
13
14
+# compile wheels
15
+for PYBIN in /opt/python/*/bin/; do
16
+ ${PYBIN}/pip install -r /io/dev-requirements.txt
17
+ ${PYBIN}/cython bencoder.pyx
18
${PYBIN}/pip wheel /io/ -w /tmp/wheelhouse/
19
done
20
@@ -16,7 +25,7 @@ done
25
26
cp /tmp/wheelhouse/ordereddict* /io/wheelhouse
27
-# Install packages and test
28
+# Install packages and test again
29
21
30
${PYBIN}/pip install bencoder.pyx --no-index -f /io/wheelhouse
22
31
(cd $/io; ${PYBIN}/py.test)
0 commit comments