#!/bin/sh

set -ex

# TODO: run a server in the background so that the selenium based tests can
# also run

for py in $(py3versions -s 2>/dev/null)
do
    $py -m pytest -m "not needs_server" src/bepasty/tests/
done
