diff --git a/t/test.t b/t/test.t index a12151fb..7bc55d0b 100644 --- a/t/test.t +++ b/t/test.t @@ -94,6 +94,14 @@ sub process_file { } ); } + elsif ( $interpreter =~ m{python3} ) { + run_check( + { command => [ 'python3', '-m', 'py_compile', $file ], + description => 'python3 compile', + filename => $filename + } + ); + } elsif ( $interpreter =~ m{python} ) { run_check( { command => [ 'python', '-m', 'py_compile', $file ],