Skip to content

Commit

Permalink
fix: config limit for int/str conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertshuford committed Nov 3, 2023
1 parent 2cc5334 commit d67345f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ jobs:
run: pip install -r requirements.frozen.txt
- name: Run Tests
run: python -m pytest --cov=hermit --cov-config=tests/.coveragerc --ignore=vendor
env:
PYTHONINTMAXSTRDIGITS: 68000
- name: Coverage
run: codecov
5 changes: 5 additions & 0 deletions environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,8 @@ if [ ! -e "${SUBMODULES_DIR}/pybitcointools/pybitcointools" ]; then
else
echo "[git] Submodules present"
fi

#
# Configure integer string conversion length limit in python
#
export PYTHONINTMAXSTRDIGITS=68000

0 comments on commit d67345f

Please sign in to comment.