blob: 52b5227873b3a118437bfe340ad70ce9c1945a13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
set -e
set -x
test -n "$PYTHON" || PYTHON=python
test -n "$PYTEST" || PYTEST=pytest
mkdir -p tests/tmp
export PYTHONMAJOR=$($PYTHON -V 2>&1 |awk '{print $2}' |awk -F. '{print $1}')
export PYTHONMINOR=$($PYTHON -V 2>&1 |awk '{print $2}' |awk -F. '{print $2}')
export PYTHONPATH=$(ls -d build/lib.*$PYTHONMAJOR*$PYTHONMINOR):$PYTHONPATH
extra_attrs=
if test "$CI" = true; then
if test -n "$USECURL" && echo "$USECURL" |grep -q gssapi; then
:
else
extra_attrs="$extra_attrs",\!gssapi
fi
if test -n "$USECURL" && echo "$USECURL" |grep -q libssh2; then
:
else
extra_attrs="$extra_attrs",\!ssh
fi
fi
$PYTHON -c 'import pycurl; print(pycurl.version)'
$PYTEST
|