We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b0bf8f commit d91f5dbCopy full SHA for d91f5db
1 file changed
tests/conftest.py
@@ -14,6 +14,11 @@
14
# before tests start to run.
15
#
16
def install_required_packages():
17
+ PYODIDE_ROOT = os.environ.get('PYODIDE_ROOT')
18
+ if PYODIDE_ROOT:
19
+ # We can't run child processes, so rely on required test packages
20
+ # already being installed, e.g. in our wheel's <requires_dist>.
21
+ return
22
packages = 'pytest fontTools pymupdf-fonts flake8 pylint codespell'
23
if platform.system() == 'Windows' and int.bit_length(sys.maxsize+1) == 32:
24
# No pillow wheel available, and doesn't build easily.
0 commit comments