Dont cancel non-flaky tests if flaky tests fail (#3344)

* Dont cancel other runs if flaky runs fail

* Fix quote

* CHANGELOG

* Revert deliberate test failure
This commit is contained in:
Freddy Boulton 2023-02-27 17:59:36 -05:00 committed by GitHub
parent 126694b70d
commit fc5e9a2156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ env:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.test-type == 'flaky' }}
strategy:
matrix:
test-type: ["not flaky", "flaky"]

View File

@ -50,7 +50,7 @@ By [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3297](https://git
## Testing and Infrastructure Changes:
* Adds a script to benchmark the performance of the queue and adds some instructions on how to use it. By [@freddyaboulton](https://github.com/freddyaboulton) and [@abidlabs](https://github.com/abidlabs) in [PR 3272](https://github.com/gradio-app/gradio/pull/3272)
* Flaky python tests no longer cancel non-flaky tests by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 3344](https://github.com/gradio-app/gradio/pull/3344)
## Breaking Changes:
No changes to highlight.