File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 66
66
if : endsWith(matrix.python, '-dev')
67
67
with :
68
68
python-version : ' ${{ matrix.python }}'
69
+ - name : Install python testsuite
70
+ if : endsWith(matrix.python, '-dev')
71
+ run : |
72
+ version=$(echo $PYVERSION | sed 's/-dev//')
73
+ sudo apt-get install -y --no-install-recommends libpython${version}-testsuite
74
+ env :
75
+ PYVERSION : ' ${{ matrix.python }}'
69
76
- name : Run tests
70
77
run : ./ci.sh
71
78
env :
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ if python -c 'import sys; sys.exit(sys.version_info >= (3, 7))'; then
80
80
git diff test-requirements.txt
81
81
fi
82
82
83
+ # See https://github.com/python-trio/trio/issues/334
84
+ YAPF_VERSION=0.20.0
85
+
83
86
if [ " $CHECK_FORMATTING " = " 1" ]; then
84
87
pip install yapf==${YAPF_VERSION}
85
88
if ! yapf -rpd setup.py trio_asyncio; then
You can’t perform that action at this time.
0 commit comments