From c8f13eedbc3ea7f2137d23ec14f200eaa70cdeef Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 25 Jan 2022 10:46:59 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1246a679..a4af9efe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -343,8 +343,8 @@ jobs: - name: Basic Tests all jobs run: | - echo -e "python: $python\npip: $pip\ngam: $gam\ngampath: $gampath\n" - $python -m unittest discover --start-directory ./ --pattern "*_test.py" --buffer + echo -e "python: $PYTHON\npip: $PIP\ngam: $gam\ngampath: $gampath\n" + $PYTHON -m unittest discover --start-directory ./ --pattern "*_test.py" --buffer touch "${gampath}/nobrowser.txt" $gam version extended export GAMVERSION=$($gam version simple) @@ -358,11 +358,11 @@ jobs: export vline=$($gam version | grep "Python ") export python_line=($vline) export this_python=${python_line[1]} - $python tools/a_atleast_b.py "${this_python}" "${MIN_PYTHON_VERSION}" + $PYTHON tools/a_atleast_b.py "${this_python}" "${MIN_PYTHON_VERSION}" export vline=$($gam version extended | grep "OpenSSL ") export openssl_line=($vline) export this_openssl="${openssl_line[1]}" - $python tools/a_atleast_b.py "${this_openssl}" "${MIN_OPENSSL_VERSION}" + $PYTHON tools/a_atleast_b.py "${this_openssl}" "${MIN_OPENSSL_VERSION}" - name: Live API tests push only