Skip to content

Commit

Permalink
Merge pull request #809 from tlsfuzzer/verbose
Browse files Browse the repository at this point in the history
More verbose progress
  • Loading branch information
tomato42 committed Feb 21, 2023
2 parents 9cdfbfd + 06c0aae commit 81adc57
Show file tree
Hide file tree
Showing 4 changed files with 788 additions and 31 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,10 @@ jobs:
# more generally, it should be `1845 + len(sys.version.split()[0])`,
# as http.server uses `sys_version = "Python/" + sys.version.split()[0]`
# https://github.com/python/cpython/blob/2c050e52f1ccf5db03819e4ed70690521d67e9fa/Lib/http/server.py#L253
if [[ $PYTHON_VERSION == '2.7' || $PYTHON_VERSION == '3.4' || $PYTHON_VERSION == '3.5' || $PYTHON_VERSION == '3.6' || $PYTHON_VERSION == '3.7' || $PYTHON_VERSION == '3.8' || $PYTHON_VERSION == '3.9' || $PYTHON_VERSION == '3.10' ]]; then
if [[ $PYTHON_VERSION == '2.7' || $PYTHON_VERSION == '3.4' || $PYTHON_VERSION == '3.5' || $PYTHON_VERSION == '3.6' || $PYTHON_VERSION == '3.7' || $PYTHON_VERSION == '3.8' || $PYTHON_VERSION == '3.9' ]]; then
export REPLY_SIZE=1850
elif [[ $PYTHON_VERSION == '3.10' ]]; then
export REPLY_SIZE=1851 # Server: SimpleHTTP/0.6 Python/3.10.10
elif [[ $PYTHON_VERSION == 'nightly' ]]; then
export REPLY_SIZE=1852 # Server: SimpleHTTP/0.6 Python/3.10.0a0
else
Expand Down

0 comments on commit 81adc57

Please sign in to comment.