mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
 | 
						|
# Ensure fribidi is installed by the system.
 | 
						|
if [[ "$OSTYPE" == "darwin"* ]]; then
 | 
						|
    # If Homebrew is on the path during the build, it may leak into the wheels.
 | 
						|
    # However, we *do* need Homebrew to provide a copy of fribidi for
 | 
						|
    # testing purposes so that we can verify the fribidi shim works as expected.
 | 
						|
    if [[ "$(uname -m)" == "x86_64" ]]; then
 | 
						|
        HOMEBREW_PREFIX=/usr/local
 | 
						|
    else
 | 
						|
        HOMEBREW_PREFIX=/opt/homebrew
 | 
						|
    fi
 | 
						|
    $HOMEBREW_PREFIX/bin/brew install fribidi
 | 
						|
 | 
						|
    # Add the lib folder for fribidi so that the vendored library can be found.
 | 
						|
    # Don't use $HOMEWBREW_PREFIX/lib directly - use the lib folder where the
 | 
						|
    # installed copy of fribidi is cellared. This ensures we don't pick up the
 | 
						|
    # Homebrew version of any other library that we're dependent on (most notably,
 | 
						|
    # freetype).
 | 
						|
    export DYLD_LIBRARY_PATH=$(dirname $(realpath $HOMEBREW_PREFIX/lib/libfribidi.dylib))
 | 
						|
elif [ "${AUDITWHEEL_POLICY::9}" == "musllinux" ]; then
 | 
						|
    apk add curl fribidi
 | 
						|
else
 | 
						|
    yum install -y fribidi
 | 
						|
fi
 | 
						|
 | 
						|
if [ ! -d "test-images-main" ]; then
 | 
						|
    curl -fsSL -o pillow-test-images.zip https://github.com/python-pillow/test-images/archive/main.zip
 | 
						|
    unzip pillow-test-images.zip
 | 
						|
    mv test-images-main/* Tests/images
 | 
						|
fi
 | 
						|
 | 
						|
# Runs tests
 | 
						|
python3 selftest.py
 | 
						|
python3 -m pytest -vv -x checks/check_wheel.py
 | 
						|
python3 -m pytest -vv -x
 |