Lines Matching +full:pypy +full:- +full:c

3 python -c 'import sys; print("sys.path:" , sys.path)'
6 …python -c 'import '$DEPENDENCY'; print("'$DEPENDENCY': "+str(getattr('$DEPENDENCY', "__version__",…
7 echo "----"
15 python --version
16 python -c "from scapy.all import *; print(conf)"
19 if [ -z "$SCAPY_SUDO" -o "$SCAPY_SUDO" = "false" ]
21 UT_FLAGS="-K netaccess -K needs_root -K manufdb"
24 SCAPY_SUDO="$SCAPY_SUDO -H"
29 UT_FLAGS+=" -K not_pcapdnet"
32 UT_FLAGS+=" -K ipv6"
34 # AES-CCM, ChaCha20Poly1305 and X25519 were added to Cryptography v2.0
36 UT_FLAGS+=" -K crypto_advanced"
38 if python --version 2>&1 | grep -q PyPy
40 # cryptography requires PyPy >= 2.6, Travis CI uses 2.5.0
41 UT_FLAGS+=" -K crypto -K not_pypy"
44 if python --version 2>&1 | grep -q '^Python 3\.'
48 UT_FLAGS+=" -K FIXME_py3"
51 if python --version 2>&1 | grep -q '^Python 3\.[012345]'
54 UT_FLAGS+=" -K random_weird_py3"
57 if python --version 2>&1 | grep -q '^Python 3\.[0123]'
60 UT_FLAGS+=" -K crypto"
64 ## /Users/travis/Library/Python/2.7/bin: pip when non-root on osx
66 [ -d "$_path" ] && echo "$PATH" | grep -qvE "(^|:)$_path(:|$)" && export PATH="$PATH:$_path"
73 echo "[ \"\$*\" = \"--version\" ] && echo \"`python --version`\" && exit 0" >> test/python
74 …echo "`which coverage` run --rcfile=../.coveragerc --concurrency=multiprocessing -a \$*" >> test/p…
78 if [ -n "$SCAPY_SUDO" ]
91 which tcpdump >/dev/null 2>&1 || UT_FLAGS+=" -K tcpdump"
92 which tshark >/dev/null 2>&1 || UT_FLAGS+=" -K tshark"
94 if [ -n "$SCAPY_SUDO" ]
96 SCAPY_SUDO="$SCAPY_SUDO --preserve-env"
107 if [ -z "$SCAPY_USE_PCAPDNET" ]
109 PYTHON="$PYTHON" $SCAPY_SUDO ./run_tests -q -F -t bpf.uts $UT_FLAGS || exit $?
111 UT_FLAGS+=" -K manufdb -K linux"
116 UT_FLAGS+=" -K osx"
120 PYTHON="$PYTHON" $SCAPY_SUDO ./run_tests -c ./configs/travis.utsc -T "bpf.uts" -T "mock_windows.uts…
123 if [ "$TRAVIS_OS_NAME" = "linux" ] && [ -n "$SCAPY_SUDO" ]
126 PYTHON="$PYTHON" $SCAPY_SUDO ./run_tests -q -F -t tls/tests_tls_netaccess.uts $UT_FLAGS || exit $?