Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run_scapy_py2.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set PYTHONPATH=%cd%
set PYTHONPATH=%~dp0
set PYTHONDONTWRITEBYTECODE=True
if "%1"=="--nopause" (
set nopause="True"
Expand Down
2 changes: 1 addition & 1 deletion run_scapy_py3.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set PYTHONPATH=%cd%
set PYTHONPATH=%~dp0
set PYTHONDONTWRITEBYTECODE=True
if "%1"=="--nopause" (
set nopause="True"
Expand Down
3 changes: 2 additions & 1 deletion test/run_tests_py2.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
@echo off
title UTscapy - All tests - PY2
set MYDIR=%cd%\..
set MYDIR=%~dp0\..
set PYTHONPATH=%MYDIR%
set PYTHONDONTWRITEBYTECODE=True
if [%1]==[] (
python "%MYDIR%\scapy\tools\UTscapy.py" -c configs\\windows2.utsc -T bpf.uts -T linux.uts -o scapy_regression_test_%date:~6,4%_%date:~3,2%_%date:~0,2%.html
) else (
Expand Down
2 changes: 1 addition & 1 deletion test/run_tests_py3.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
title UTscapy - All tests - PY3
set MYDIR=%cd%\..
set MYDIR=%~dp0\..
set PYTHONPATH=%MYDIR%
set PYTHONDONTWRITEBYTECODE=True
if [%1]==[] (
Expand Down