600c1bafb4
* add test_multiple_proxies_stats_add_up * make a premium user using both proxies * added a couple clones, must add constraints now to run for multiple-proxies (check arithmetic) * lint and code review * fix comment * fix tests (now fails at todo) * will introduce endpoint to fetch rpc stats from mysql * added influxdb to tests, should next do asserst in stats collected by influx, and mysql for multi-proxy * created test where influx and mysql have separate data, should help with debugging * forgot to drop influx * tests pass except multi-proxy * test passes, will check out nothing broke elswhere * go back to numbers * some linting * linting * removed redundant info! * responding to PR comments * ULID as instance-hash for the tag in influx (for anti-dup) --------- Co-authored-by: yenicelik <david.yenicelik@gmail.com>
16 lines
309 B
Rust
16 lines
309 B
Rust
pub mod admin_deposits;
|
|
pub mod admin_increases_balance;
|
|
pub mod anvil;
|
|
pub mod app;
|
|
pub mod create_admin;
|
|
pub mod create_provider_with_rpc_key;
|
|
pub mod create_user;
|
|
pub mod influx;
|
|
pub mod mysql;
|
|
pub mod referral;
|
|
pub mod rpc_key;
|
|
pub mod stats_accounting;
|
|
pub mod user_balance;
|
|
|
|
pub use self::app::TestApp;
|