Skip to content

Commit

Permalink
Add missing codegen mod in integration tests (#1418)
Browse files Browse the repository at this point in the history
* add codgen mod to the module tree

* port codegen tests to scale-typegen

* remove test flag
  • Loading branch information
tadeohepperle committed Feb 15, 2024
1 parent 1fe8ec3 commit db00212
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 222 deletions.
214 changes: 0 additions & 214 deletions testing/integration-tests/src/full_client/codegen/codegen_tests.rs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use codec::Decode;
use regex::Regex;
use subxt_codegen::{ syn, CodegenBuilder };
use subxt_codegen::{syn, CodegenBuilder};
use subxt_metadata::Metadata;

fn load_test_metadata() -> Metadata {
Expand Down
1 change: 0 additions & 1 deletion testing/integration-tests/src/full_client/codegen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@
#[allow(clippy::all)]
mod polkadot;

mod codegen_tests;
mod documentation;
7 changes: 1 addition & 6 deletions testing/integration-tests/src/full_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
// see LICENSE for license details.

#[cfg(test)]
mod blocks;
#[cfg(test)]
mod client;
#[cfg(test)]
mod codegen;
mod frame;
#[cfg(test)]
mod metadata;
#[cfg(test)]
mod runtime_api;
#[cfg(test)]
mod storage;

0 comments on commit db00212

Please sign in to comment.