-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: the array api intelligent tests now use 4 runners to avoid the 6…
… hour timeout when running the coverage workflow, also added the display-test-results job for summarizing the results similar to that in the regular intelligent tests
- Loading branch information
1 parent
08c1ce0
commit 3b75e53
Showing
5 changed files
with
116 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,10 @@ permissions: | |
jobs: | ||
determine_coverage: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branch: [ 1, 2, 3, 4 ] | ||
steps: | ||
- name: Checkout Ivy 🛎 | ||
uses: actions/checkout@v2 | ||
|
@@ -22,7 +26,7 @@ jobs: | |
run: | | ||
pip install pydriller tqdm | ||
cd ivy | ||
python scripts/determine_tests/array_api_det_coverage.py | ||
python scripts/determine_tests/array_api_det_coverage.py ${{ matrix.branch }} | ||
cd .. | ||
mkdir tests | ||
cp ivy/tests.pbz2 tests/ | ||
|
@@ -37,4 +41,4 @@ jobs: | |
destination-repository-name: 'Mapping' | ||
user-email: [email protected] | ||
commit-message: Update Array API Tests Mapping | ||
target-branch: main | ||
target-branch: main${{ matrix.branch }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters