Skip to content

Commit

Permalink
ParameterSet: Use python3 to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Jul 13, 2021
1 parent 29db216 commit c84edd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FWCore/ParameterSet/test/runPythonTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ do
bn=`basename $file`
if [ "$bn" != "__init__.py" ]; then
bnm=${bn%.*}
python -m FWCore.ParameterSet."$bnm" || die "unit tests for $bn failed" $?
python3 -m FWCore.ParameterSet."$bnm" || die "unit tests for $bn failed" $?
fi
done

0 comments on commit c84edd7

Please sign in to comment.