#!/bin/bash
set -e

DEB_HOST_ARCH=$( dpkg-architecture -qDEB_HOST_ARCH )

if [ "${DEB_HOST_ARCH}" == "i386" ]; then
    pytest -k "not (built_in/test_ellipsoid.py or built_in/test_torus_crowd.py or test_boundary_layers.py)"
else
    pytest
fi
