Skip to content

Commit ae27e46

Browse files
committed
Fix envs.
1 parent 01f6f6d commit ae27e46

File tree

2 files changed

+17
-20
lines changed

2 files changed

+17
-20
lines changed

.appveyor.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,6 @@ init:
127127
- ps: echo $env:TOXENV
128128
- ps: ls C:\Python*
129129
install:
130-
- ps: |
131-
Set-PSDebug -Trace 1
132-
if ($Env:TOXENV.StartsWith("py38")) {
133-
if ($Env:PYTHON_ARCH -eq "64") {
134-
iex "choco install python3 --version=3.8 --no-progress --params /InstallDir:$Env:PYTHON_HOME"
135-
} else {
136-
iex "choco install python3 --version=3.8 --no-progress --params /InstallDir:$Env:PYTHON_HOME --x86"
137-
}
138-
}
139130
- '%PYTHON_HOME%\python -mpip install --progress-bar=off twine tox-wheel -rci/requirements.txt'
140131
- '%PYTHON_HOME%\Scripts\virtualenv --version'
141132
- '%PYTHON_HOME%\Scripts\easy_install --version'

.travis.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ dist: xenial
33
cache: false
44
env:
55
global:
6+
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
67
- SEGFAULT_SIGNALS=all
8+
- LANG=en_US.UTF-8
79
- TWINE_USERNAME=ionel
810
matrix:
911
include:
@@ -14,6 +16,7 @@ matrix:
1416
env:
1517
- TOXENV=docs
1618
- os: osx
19+
osx_image: xcode11
1720
language: generic
1821
env:
1922
- TOXENV=py27-cover
@@ -26,6 +29,7 @@ matrix:
2629
python: '2.7'
2730
arch: arm64
2831
- os: osx
32+
osx_image: xcode11
2933
language: generic
3034
env:
3135
- TOXENV=py27-nocov
@@ -79,10 +83,6 @@ matrix:
7983
- WHEEL_PATH=.tox/dist
8084
python: '3.6'
8185
arch: arm64
82-
- os: osx
83-
language: generic
84-
env:
85-
- TOXENV=py37-cover
8686
- env:
8787
- TOXENV=py37-cover,codecov,extension-coveralls,coveralls
8888
python: '3.7'
@@ -91,11 +91,6 @@ matrix:
9191
- TOXENV=py37-cover,codecov,extension-coveralls,coveralls
9292
python: '3.7'
9393
arch: arm64
94-
- os: osx
95-
language: generic
96-
env:
97-
- TOXENV=py37-nocov
98-
- WHEEL_PATH=.tox/dist
9994
- env:
10095
- TOXENV=py37-nocov
10196
- WHEEL_MANYLINUX1=cp37
@@ -107,6 +102,11 @@ matrix:
107102
- WHEEL_PATH=.tox/dist
108103
python: '3.7'
109104
arch: arm64
105+
- os: osx
106+
osx_image: xcode11
107+
language: generic
108+
env:
109+
- TOXENV=py38-cover
110110
- env:
111111
- TOXENV=py38-cover,codecov,extension-coveralls,coveralls
112112
python: '3.8'
@@ -115,6 +115,12 @@ matrix:
115115
- TOXENV=py38-cover,codecov,extension-coveralls,coveralls
116116
python: '3.8'
117117
arch: arm64
118+
- os: osx
119+
osx_image: xcode11
120+
language: generic
121+
env:
122+
- TOXENV=py38-nocov
123+
- WHEEL_PATH=.tox/dist
118124
- env:
119125
- TOXENV=py38-nocov
120126
- WHEEL_MANYLINUX1=cp38
@@ -188,8 +194,8 @@ script:
188194
fi
189195
)
190196
after_failure:
191-
- travis_wait 15 more .tox/log/* | cat
192-
- travis_wait 15 more .tox/*/log/* | cat
197+
- more .tox/log/* | cat
198+
- more .tox/*/log/* | cat
193199
notifications:
194200
email:
195201
on_success: never

0 commit comments

Comments
 (0)