File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,17 +86,17 @@ jobs:
8686 pip3 install wheel==0.45.1
8787
8888 - name : Run tests without coverage
89- # We run tests without coverage on PR because we don't make use of coverage information
89+ # We run tests without coverage on PR, merge_group, and schedule because we don't make use of coverage information
9090 # and would like to run the tests as fast as possible. We run it on schedule as well, because that is what
9191 # populates the cache and cache may include test results.
92- if : ${{ github.event_name == 'pull_request' || github.event_name == 'schedule' }}
92+ if : ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' || github.event_name == ' schedule' }}
9393 env :
9494 ENVFILTER : DATABRICKS_BUNDLE_ENGINE=${{ matrix.deployment }}
9595 run : make test
9696
9797 - name : Run tests with coverage
98- # Still run 'make cover' on push to main and merge checks to make sure it does not get broken.
99- if : ${{ github.event_name != 'pull_request' && github.event_name ! = 'schedule ' }}
98+ # Only run 'make cover' on push to main to make sure it does not get broken.
99+ if : ${{ github.event_name = = 'push ' }}
100100 env :
101101 ENVFILTER : DATABRICKS_BUNDLE_ENGINE=${{ matrix.deployment }}
102102 run : make cover
You can’t perform that action at this time.
0 commit comments