Rename WINERUN environment variable to wxTEST_RUNNER

Make the variable name wx-specific before starting to use it in wx tests
too.
This commit is contained in:
Vadim Zeitlin 2021-06-28 01:02:47 +01:00
parent 3808e6a28d
commit 1051d9f0da

View File

@ -109,7 +109,7 @@ jobs:
sudo apt-get -qq install $packages
echo "WINERUN=${winerun}" >> $GITHUB_ENV
echo "wxTEST_RUNNER=${winerun}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2
@ -197,7 +197,7 @@ jobs:
httpbin_launch
$WINERUN ./test || rc=$?
$wxTEST_RUNNER ./test || rc=$?
if [ -n "$rc" ]; then
httpbin_show_log
@ -207,4 +207,4 @@ jobs:
- name: Run GUI tests
working-directory: tests
run: |
$WINERUN ./test_gui
$wxTEST_RUNNER ./test_gui