Skip to content

Commit

Permalink
build: distinguish unit test and pylint successful checks (openedx#32452
Browse files Browse the repository at this point in the history
)

We will be able to use these composite checks to block
PR merges instead of blocking on every single individual
unit test and pylint check.

Closes: openedx#32238
  • Loading branch information
UsamaSadiq authored Aug 24, 2023
1 parent ecc4a0d commit 2ffcc1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# https://github.com/marketplace/actions/alls-green#why
# https://github.com/orgs/community/discussions/33579
success:
name: Tests successful
name: Pylint checks successful
if: always()
needs:
- run-pylint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# https://github.com/marketplace/actions/alls-green#why
# https://github.com/orgs/community/discussions/33579
success:
name: Tests successful
name: Unit tests successful
if: (github.repository == 'edx/edx-platform-private') || (github.repository == 'openedx/edx-platform' && (startsWith(github.base_ref, 'open-release') == false))
needs:
- run-tests
Expand Down

0 comments on commit 2ffcc1a

Please sign in to comment.