#!/bin/bash
set -e

DEB_HOST_ARCH=$( dpkg-architecture -qDEB_HOST_ARCH )

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