File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
ci/templates/.github/workflows Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ jobs:
25
25
{% set python %}pypy-{{ prefix[4] }}.{{ prefix[5:] }}{% endset %}
26
26
{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
27
27
{% set toxpython %}pypy{{ prefix[4] }}.{{ prefix[5:] }}{% endset %}
28
- {% set pypy %}true{% endset %}
29
28
{% else %}
30
29
{% set python %}{{ prefix[2] }}.{{ prefix[3:] }}{% endset %}
31
30
{% set cpython %}cp{{ prefix[2:] }}{% endset %}
32
31
{% set toxpython %}python{{ prefix[2] }}.{{ prefix[3:] }}{% endset %}
33
- {% set pypy %}false{% endset %}
34
32
{% endif %}
35
33
{% for os, python_arch in [
36
34
['ubuntu', 'x64'],
42
40
python_arch : ' {{ python_arch }}'
43
41
tox_env : ' {{ env }}'
44
42
os : ' {{ os }}-latest'
45
- pypy : {{ pypy }}
46
43
{% endfor %}
47
44
{% endfor %}
48
45
steps :
54
51
python-version : {{ '${{ matrix.python }}' }}
55
52
architecture : {{ '${{ matrix.python_arch }}' }}
56
53
57
- - name : install dependencies (terminfo)
58
- if : >
59
- matrix.pypy
60
- run : >
61
- sudo apt-get install terminfo libtinfo6 libncursesw6
62
54
- name : install dependencies
63
55
run : |
64
56
python -mpip install --progress-bar=off -r ci/requirements.txt
71
63
env :
72
64
TOXPYTHON : ' {{ ' ${{ matrix.toxpython }}' }}'
73
65
MANHOLE_TEST_TIMEOUT : 40
74
- TERM : xterm
75
66
run : >
76
67
tox -e {{ '${{ matrix.tox_env }}' }} -v
77
68
finish :
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ basepython =
32
32
setenv =
33
33
PYTHONPATH ={toxinidir}/tests
34
34
PYTHONUNBUFFERED =yes
35
+ TERM =xterm
35
36
passenv =
36
37
*
37
38
usedevelop =
You can’t perform that action at this time.
0 commit comments