#!/bin/bash
set -e

for py in $(py3versions -r 2> /dev/null)
do
	$py tests/manage.py test tests/django_restframework_gis_tests
done

