#!/bin/sh

set -e

for i in $(py3versions -vr 2>/dev/null) ; do \
	python$i -m pytest -v -n auto test -k 'not test_basic and not test_custom_writer'
done
