Skip to content

Commit e98daea

Browse files
committed
Install pytest-benchmark in build-wheels.sh
1 parent a510f46 commit e98daea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bencoder.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def encode_dict(x, list r):
149149

150150
encode_func = {
151151
int: encode_int,
152-
long: encode_int,
152+
long: encode_long,
153153
bytes: encode_string,
154154
str: encode_string,
155155
list: encode_list,

ci/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ cp /tmp/wheelhouse/ordereddict* /io/wheelhouse
1919
# Install packages and test again
2020
for PYBIN in /opt/python/*/bin/; do
2121
${PYBIN}/pip install bencoder.pyx --no-index -f /io/wheelhouse
22-
${PYBIN}/pip install pytest
22+
${PYBIN}/pip install pytest pytest-benchmark
2323
(cd /io; ${PYBIN}/py.test)
2424
done

0 commit comments

Comments
 (0)