diff --git a/.github/workflows/comment-triggered-ci.yml b/.github/workflows/comment-triggered-ci.yml index dbed8b1d19..d75f1bf4d7 100644 --- a/.github/workflows/comment-triggered-ci.yml +++ b/.github/workflows/comment-triggered-ci.yml @@ -40,6 +40,9 @@ jobs: runs-on: self-hosted keyword: python3.11-pandas1.5-fast-tests commands: | + sudo add-apt-repository ppa:deadsnakes/ppa -y + sudo apt update + sudo apt install python3.11 -y tox -v -e py311-pandas15,report -- pytest --skip-slow --cov --cov-report=term-missing -vv tests description: Run of fast tests on Python v3.11 with Pandas v1.5 timeout-minutes: 8640 @@ -54,6 +57,9 @@ jobs: runs-on: self-hosted keyword: python3.11-pandas1.5-all-tests commands: | + sudo add-apt-repository ppa:deadsnakes/ppa -y + sudo apt update + sudo apt install python3.11 -y tox -v -e py311-pandas15,report -- pytest --cov --cov-report=term-missing -vv tests description: Run of all tests on Python v3.11 with Pandas v1.5 timeout-minutes: 8640 @@ -68,6 +74,9 @@ jobs: runs-on: self-hosted keyword: python3.11-pandas2.0-fast-tests commands: | + sudo add-apt-repository ppa:deadsnakes/ppa -y + sudo apt update + sudo apt install python3.11 -y tox -v -e py311-pandas20,report -- pytest --skip-slow --cov --cov-report=term-missing -vv tests description: Run of fast tests on Python v3.11 with Pandas v2.0 timeout-minutes: 8640 @@ -82,6 +91,9 @@ jobs: runs-on: self-hosted keyword: python3.11-pandas2.0-all-tests commands: | + sudo add-apt-repository ppa:deadsnakes/ppa -y + sudo apt update + sudo apt install python3.11 -y tox -v -e py311-pandas20,report -- pytest --cov --cov-report=term-missing -vv tests description: Run of all tests on Python v3.11 with Pandas v2.0 timeout-minutes: 8640 diff --git a/.github/workflows/run-on-comment.yml b/.github/workflows/run-on-comment.yml index 4fff39279c..0268332f88 100644 --- a/.github/workflows/run-on-comment.yml +++ b/.github/workflows/run-on-comment.yml @@ -99,6 +99,7 @@ jobs: - name: Run test command(s) run: ${{ inputs.commands }} - name: Get comment-bot token + if: always() && steps.has_permissions.outputs.result == 'true' id: get_comment_bot_token uses: peter-murray/workflow-application-token-action@e8782d687a306fb13d733244d0f2a50e272d3752 with: