scapy/appveyor.yml

46 lines
1.7 KiB
YAML
Raw Normal View History

2016-12-14 16:26:38 +00:00
environment:
# Python versions that will be tested
# Note: it defines variables that can be used later
matrix:
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
# There is no build phase for Scapy
build: off
install:
# Install the winpcap, windump and wireshark suites
- choco install -y winpcap wireshark
- ps: wget http://www.winpcap.org/windump/install/bin/windump_3_9_5/WinDump.exe -UseBasicParsing -OutFile C:\Windows\System32\windump.exe
2016-12-14 16:26:38 +00:00
# Install Python modules
- "%PYTHON%\\python -m pip install cryptography coverage mock pyreadline keyboard"
- set PATH="%PYTHON%\\Scripts\\;%PATH%"
2016-12-14 16:26:38 +00:00
test_script:
# Set environment variables
- set PYTHONPATH=%APPVEYOR_BUILD_FOLDER%
- set PATH="%APPVEYOR_BUILD_FOLDER%;C:\Program Files\Wireshark\;%PATH%"
2016-12-14 16:26:38 +00:00
# Main unit tests
2017-02-26 13:35:06 +00:00
- "%PYTHON%\\python -m coverage run --parallel-mode bin\\UTscapy -f text -t test\\regression.uts -F -K mock_read_routes6_bsd || exit /b 42"
2016-12-14 16:26:38 +00:00
- 'del test\regression.uts'
2017-03-05 00:51:00 +00:00
# Secondary and contrib unit tests
2016-12-14 16:26:38 +00:00
- 'del test\bpf.uts' # Don't bother with BPF regression tests
2017-02-26 13:35:06 +00:00
- "%PYTHON%\\python -m coverage run --parallel-mode bin\\UTscapy -c test\\configs\\windows.utsc || exit /b 42"
2017-02-26 20:24:40 +00:00
# TLS unit tests
2017-02-26 13:35:06 +00:00
# Note: due to a multiprocessing bug, we got to be in the UTscapy.py folder and call it directly
- 'cd scapy/tools'
- "%PYTHON%\\python -m coverage run --concurrency=multiprocessing UTscapy.py -f text -t ..\\..\\test\\tls\\tests_tls_netaccess.uts -F -P \"sys.path.append(os.path.abspath('../../test/tls'))\" -K open_ssl_client || exit /b 42"
- 'cd ../../'
2017-01-05 09:27:57 +00:00
after_test:
# Install & run codecov
- "%PYTHON%\\python -m pip install codecov"
- "SET PATH=%PYTHON%\\Scripts\\;%PATH%"
2017-02-26 13:35:06 +00:00
- "coverage combine ./ ./scapy/tools/"
2017-01-05 09:27:57 +00:00
- codecov