python3.pkgs.asynctest: disable tests on python3.8

This commit is contained in:
Jörg Thalheim 2020-06-19 10:52:03 +01:00
parent 407897c65a
commit 25b91c2059
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -17,6 +17,9 @@ buildPythonPackage rec {
--replace "test_events_watched_outside_test_are_ignored" "xtest_events_watched_outside_test_are_ignored"
'';
# https://github.com/Martiusweb/asynctest/issues/132
doCheck = pythonOlder "3.8";
checkPhase = ''
${python.interpreter} -m unittest test
'';