Skip to content

Commit

Permalink
lang: Add support for multiple test suites with separate local valida…
Browse files Browse the repository at this point in the history
…tors (#1681)
  • Loading branch information
paul-schaaf committed Mar 30, 2022
1 parent 7803acb commit 470e902
Show file tree
Hide file tree
Showing 31 changed files with 976 additions and 137 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yaml
Expand Up @@ -381,6 +381,8 @@ jobs:
path: tests/validator-clone
- cmd: cd tests/cpi-returns && anchor test --skip-lint
path: tests/cpi-returns
- cmd: cd tests/multiple-suites && anchor test --skip-lint
path: tests/multiple-suites
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup/
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -12,6 +12,8 @@ examples/*/Cargo.lock
examples/**/Cargo.lock
tests/*/Cargo.lock
tests/**/Cargo.lock
tests/*/yarn.lock
tests/**/yarn.lock
.DS_Store
docs/yarn.lock
ts/docs/
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,7 @@ The minor version will be incremented upon a breaking change and the patch versi

### Features

* lang: Add support for multiple test suites with separate local validators ([#1681](https://github.com/project-serum/anchor/pull/1681)).
* lang: Add return values to CPI client. ([#1598](https://github.com/project-serum/anchor/pull/1598)).
* avm: New `avm update` command to update the Anchor CLI to the latest version ([#1670](https://github.com/project-serum/anchor/pull/1670)).

Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -39,6 +39,6 @@ reqwest = { version = "0.11.4", features = ["multipart", "blocking"] }
tokio = "1.0"
pathdiff = "0.2.0"
cargo_toml = "0.9.2"
walkdir = "2"
walkdir = "2.3.2"
chrono = "0.4.19"
portpicker = "0.1.1"

0 comments on commit 470e902

Please sign in to comment.