From 81c4e104acc81516353e13d0630f0ec83cb0af6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Thu, 11 Jun 2020 09:15:07 +0200 Subject: [PATCH] Use setup.cfg for tox configuration. --- setup.cfg | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000..50e59e6707 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,17 @@ +[tox:tox] +envlist = py{27,35,36,37,38,39} +skipsdist = True +skip_missing_interpreters = True + +[testenv] +deps = + numpy +setenv = + SDL_VIDEODRIVER=dummy + SDL_AUDIODRIVER=disk +passenv = + PORTMIDI_INC_PORTTIME +commands = + python -m buildconfig -auto + pip install . + python -m pygame.tests