Fix crashing unicode Travis tests on Windows and fail build if Windows tests fail (#836)

This commit is contained in:
Micah Jerome Ellison 2020-02-08 13:51:14 -08:00
parent 4757deee66
commit 3e1061df5f

View file

@ -57,7 +57,6 @@ jobs:
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- python: nightly - python: nightly
- os: windows
include: include:
- name: Lint, via Black - name: Lint, via Black
@ -80,6 +79,7 @@ jobs:
env: env:
- JRNL_PYTHON_VERSION=3.6.8 - JRNL_PYTHON_VERSION=3.6.8
- PATH=/c/Python36:/c/Python36/Scripts:$PATH - PATH=/c/Python36:/c/Python36/Scripts:$PATH
- PYTHONIOENCODING=UTF-8
# Python 3.7 Tests # Python 3.7 Tests
- name: Python 3.7 on Linux - name: Python 3.7 on Linux
@ -95,6 +95,7 @@ jobs:
env: env:
- JRNL_PYTHON_VERSION=3.7.5 - JRNL_PYTHON_VERSION=3.7.5
- PATH=/c/Python37:/c/Python37/Scripts:$PATH - PATH=/c/Python37:/c/Python37/Scripts:$PATH
- PYTHONIOENCODING=UTF-8
# Python 3.8 Tests # Python 3.8 Tests
- name: Python 3.8 on Linux - name: Python 3.8 on Linux
@ -110,6 +111,7 @@ jobs:
env: env:
- JRNL_PYTHON_VERSION=3.8.0 - JRNL_PYTHON_VERSION=3.8.0
- PATH=/c/Python38:/c/Python38/Scripts:$PATH - PATH=/c/Python38:/c/Python38/Scripts:$PATH
- PYTHONIOENCODING=UTF-8
# ... and beyond! # ... and beyond!
- name: Python nightly on Linux - name: Python nightly on Linux