#!/usr/bin/make -f

XVFB_OPTS=--auto-servernum --server-num=20 -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset"

EXCLUDED_TESTS :=
# Non-interactive tests
EXCLUDED_TESTS += not interactive
# PulseAudio related
EXCLUDED_TESTS += and not PulseAudio
EXCLUDED_TESTS += and not test_pulse
EXCLUDED_TESTS += and not test_player_play
EXCLUDED_TESTS += and not test_player_play_multiple
# test suite just stops
EXCLUDED_TESTS += and not test_player_silent_audio_driver

# Failing for unknown reason but looks harmless
EXCLUDED_TESTS += and not test_freetype_face
# These ones are failing in cowbuilder
# Fonts are related to missing "arial" font which is normal
# Driver one looks being related to not having ALSA stuff
EXCLUDED_TESTS += and not test_fontconfig
EXCLUDED_TESTS += and not test_linux_fontconfig
EXCLUDED_TESTS += and not test_driver
# Can't test openal in cowbuilder
EXCLUDED_TESTS += and not test_openal
# cf. #929697/#1092867
EXCLUDED_TESTS += and not test_elapsed_time_between_tick
EXCLUDED_TESTS += and not test_compute_fps

# Exclude interactive tests which are mostly just stressing the OpenGL drivers (which is not very useful in this scenario)
#  see https://github.com/pyglet/pyglet/issues/346#issuecomment-769692934
EXCLUDED_TEST_GROUPS = --ignore=tests/interactive

export PYBUILD_NAME=pyglet
export PYBUILD_TEST_CUSTOM=1
export PYBUILD_TEST_ARGS=xvfb-run $(XVFB_OPTS) python{version} -m pytest -v -k "$(EXCLUDED_TESTS)" $(EXCLUDED_TEST_GROUPS)

%:
	dh $@ --buildsystem=pybuild

