Skip to content

Commit

Permalink
Stop setting up Python2 for PRs in ints-core repo (#19066)
Browse files Browse the repository at this point in the history
* Stop setting up Python2 for PRs in ints-core repo

* trigger workflow

* Revert "trigger workflow"

This reverts commit 5b6c042.
  • Loading branch information
iliakur authored Nov 15, 2024
1 parent 87a445b commit ec26732
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:

# Options
standard: true
test-py2: ${{ !matrix.python-support || contains(matrix.python-support, '2') }}
# We never test Python in integrations-core, but some partners may want to keep testing it
# in marketplace and integrations-extras.
test-py2: ${{ inputs.repo != 'core' && (!matrix.python-support || contains(matrix.python-support, '2')) }}
test-py3: ${{ !matrix.python-support || contains(matrix.python-support, '3') }}

# For other repositories
Expand Down

0 comments on commit ec26732

Please sign in to comment.