1
0
Fork 0
mirror of https://github.com/mikegerber/ocrd_calamari.git synced 2025-06-09 19:59:53 +02:00

CircleCI: Try to fix encoding problem

This commit is contained in:
Gerber, Mike 2020-01-15 15:54:09 +01:00
parent 357a2a970a
commit d2ca24bf1e

View file

@ -12,7 +12,12 @@ jobs:
- checkout
- run: make install PIP_INSTALL="pip3 install"
- run: pip3 install -r requirements-test.txt
- run: make coverage
- run:
command: |
if [[ $(python -c "import sys; print(sys.stdin.encoding)" |grep None) ]]; then
export PYTHONIOENCODING=utf-8
fi
make coverage
- codecov/upload
workflows: