Skip to content

Commit aa72abd

Browse files
authored
fix(fuzzing): Fix fuzzing workflow by correcting the PYTHONPATH (#5125)
The path to generated protobuf files added to PYTHONPATH was incorrect. Fixes #5067. Fixes #5068. Signed-off-by: Alex T. <frozen.and.blue@gmail.com>
1 parent 2aea8fe commit aa72abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
PYTHONPATH: ${{ github.workspace }}
9696
run: |
9797
cd fuzz
98-
export PYTHONPATH="$PYTHONPATH:/generated"
98+
export PYTHONPATH="$PYTHONPATH:./generated"
9999
fuzzing_scripts=($(ls *.py))
100100
echo "Found Fuzzing scripts: ${fuzzing_scripts[@]}"
101101
current_week=($(date -u +%U))

0 commit comments

Comments
 (0)