Skip to content

chore: Re-enable Solidity to ink! contract call integration test #2497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ jobs:
with:
# Run all tests with --all-features, which will run the `e2e-tests` feature if present.
command: |
ls -la /usr/local/bin/
scripts/for_all_contracts_exec.sh --path integration-tests --ignore internal/static-buffer --ignore internal/mapping \
--ignore public/debugging-strategies --ignore public/wildcard-selector --partition ${{ matrix.partition }}/4 -- \
cargo test --all-features --manifest-path {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ const DEFAULT_STORAGE_DEPOSIT_LIMIT: u128 = 10_000_000_000_000;
type E2EResult<T> = Result<T, Box<dyn Error>>;

#[ink_e2e::test]
// TODO: (@davidsemakula) Re-enable when "no space left" CI issue is fixed
// See https://github.com/use-ink/ink/issues/2458 for details.
// This test consistently triggers the issue in CI when running `npm install` for hardhat
// scripts.
#[ignore]
async fn solidity_calls_ink_works<Client: E2EBackend>(
mut client: Client,
) -> E2EResult<()> {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading