Skip to content

Commit

Permalink
chore: add minor releases to test matrix (#2365)
Browse files Browse the repository at this point in the history
## Description



closes: #XXXX

---

Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.

- [ ] Targeted PR against correct branch (see [CONTRIBUTING.md](https://github.com/cosmos/ibc-go/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
- [ ] Code follows the [module structure standards](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules/structure.md).
- [ ] Wrote unit and integration [tests](https://github.com/cosmos/ibc-go/blob/master/CONTRIBUTING.md#testing)
- [ ] Updated relevant documentation (`docs/`) or specification (`x/<module>/spec/`)
- [ ] Added relevant `godoc` [comments](https://blog.golang.org/godoc-documenting-go-code).
- [ ] Added a relevant changelog entry to the `Unreleased` section in `CHANGELOG.md`
- [ ] Re-reviewed `Files changed` in the Github PR explorer
- [ ] Review `Codecov Report` in the comment section below once CI passes
  • Loading branch information
colin-axner authored Sep 26, 2022
1 parent 77c10be commit 844612c
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions e2e/scripts/test-matricies/main/test-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,90 @@
"test-entry-point": "TestTransferTestSuite",
"chain-binary": "simd",
"tests": [
{
"chain-a-tag": "main",
"chain-b-tag": "v4.1.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v4.0.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v3.3.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v3.2.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v3.1.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v3.0.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v2.4.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v2.3.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v2.2.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v2.1.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v2.0.0"
},
{
"chain-a-tag": "v4.1.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v4.0.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v3.3.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v3.2.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v3.1.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v3.0.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v2.4.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v2.3.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v2.2.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v2.1.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v2.0.0",
"chain-b-tag": "main"
Expand All @@ -33,9 +97,17 @@
"test-entry-point": "TestIncentivizedTransferTestSuite",
"chain-binary": "simd",
"tests": [
{
"chain-a-tag": "main",
"chain-b-tag": "v4.1.0"
},
{
"chain-a-tag": "main",
"chain-b-tag": "v4.0.0"
},
{
"chain-a-tag": "v4.1.0",
"chain-b-tag": "main"
},
{
"chain-a-tag": "v4.0.0",
Expand Down

0 comments on commit 844612c

Please sign in to comment.