We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c01e9 commit 00204eaCopy full SHA for 00204ea
.github/workflows/reusable-ubuntu.yml
@@ -71,6 +71,11 @@ jobs:
71
- name: Remount sources writable for tests
72
# some tests write to srcdir, lack of pyc files slows down testing
73
run: sudo mount $CPYTHON_RO_SRCDIR -oremount,rw
74
+ - name: Delete init_cinderx from the source tree
75
+ working-directory: ${{ env.CPYTHON_BUILDDIR }}
76
+ run: rm Lib/init_cinderx.py
77
- name: Tests
78
working-directory: ${{ env.CPYTHON_BUILDDIR }}
- run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
79
+ # Meta-specific exclusions:
80
+ # test_email, test_lib2to3: GitHub export messes up EOL style, which interferes with these tests
81
+ run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu -x test_email test_lib2to3"
0 commit comments