Fix setting PYTHONOPTIMIZE env var

This commit is contained in:
Hugo van Kemenade 2020-11-03 17:31:59 +02:00
parent ddd363f7df
commit b01567fb0b

View File

@ -22,9 +22,9 @@ jobs:
] ]
include: include:
- python-version: "3.6" - python-version: "3.6"
env: PYTHONOPTIMIZE=1 PYTHONOPTIMIZE: 1
- python-version: "3.7" - python-version: "3.7"
env: PYTHONOPTIMIZE=2 PYTHONOPTIMIZE: 2
# Include new variables for Codecov # Include new variables for Codecov
- os: ubuntu-latest - os: ubuntu-latest
codecov-flag: GHA_Ubuntu codecov-flag: GHA_Ubuntu
@ -80,6 +80,8 @@ jobs:
- name: Test - name: Test
run: | run: |
.ci/test.sh .ci/test.sh
env:
PYTHONOPTIMIZE: ${{ matrix.PYTHONOPTIMIZE }}
- name: Prepare to upload errors - name: Prepare to upload errors
if: failure() if: failure()