python3Packages.antlr4-python3-runtime: fix tests for 4.9+

This commit is contained in:
Jonathan Ringer
2022-06-06 16:07:40 -07:00
parent c9b86a269b
commit c055b9b796

View File

@@ -9,8 +9,9 @@ buildPythonPackage rec {
sourceRoot = "source/runtime/Python3";
# in 4.9, test was renamed to tests
checkPhase = ''
cd test
cd test*
${python.interpreter} ctest.py
'';