Skip to content

Commit

Permalink
Fix update_expectations.sh for systems with python 2 installed
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jun 13, 2023
1 parent afcff83 commit b6956ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/test/files/update_expectations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

base=$(dirname "$0")

python $base/../test_junit.py
python $base/../test_nunit.py
python $base/../test_xunit.py
python $base/../test_trx.py
python $base/../test_mocha.py
python $base/../test_dart.py
python3 $base/../test_junit.py
python3 $base/../test_nunit.py
python3 $base/../test_xunit.py
python3 $base/../test_trx.py
python3 $base/../test_mocha.py
python3 $base/../test_dart.py

0 comments on commit b6956ad

Please sign in to comment.