mirror of
https://github.com/mikegerber/ocrd_calamari.git
synced 2025-07-26 02:19:54 +02:00
✅ CircleCI: Try to fix encoding problem
This commit is contained in:
parent
357a2a970a
commit
d2ca24bf1e
1 changed files with 6 additions and 1 deletions
|
@ -12,7 +12,12 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- run: make install PIP_INSTALL="pip3 install"
|
- run: make install PIP_INSTALL="pip3 install"
|
||||||
- run: pip3 install -r requirements-test.txt
|
- 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
|
- codecov/upload
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue