#!/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 or test_layers or test_screw or test_swiss_cheese)"
else
    pytest
fi
