Skip to content

Commit

Permalink
Add test aggregator to all directories.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Sep 21, 2023
1 parent a01b63a commit 94cd65c
Show file tree
Hide file tree
Showing 13 changed files with 87 additions and 11 deletions.
8 changes: 1 addition & 7 deletions tests/all_tests_common.nim
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
{.used.}

# Waku common test suite
import
./common/test_envvar_serialization,
./common/test_confutils_envvar,
./common/test_protobuf_validation,
./common/test_enr_builder,
./common/test_sqlite_migrations
import ./common/test_all
5 changes: 1 addition & 4 deletions tests/all_tests_wakunode2.nim
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
## Wakunode2

import
./wakunode2/test_app,
./wakunode2/test_validators

import ./wakunode2/test_all
7 changes: 7 additions & 0 deletions tests/common/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import
./test_base64_codec,
./test_confutils_envvar,
./test_enr_builder,
./test_envvar_serialization,
./test_protobuf_validation,
./test_sqlite_migrations
6 changes: 6 additions & 0 deletions tests/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{.used.}

import
./all_tests_common,
./all_tests_waku,
./all_tests_wakunode2
13 changes: 13 additions & 0 deletions tests/waku_archive/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{.used.}

import
./test_driver_postgres_query,
./test_driver_postgres,
./test_driver_queue_index,
./test_driver_queue_pagination,
./test_driver_queue_query,
./test_driver_queue,
./test_driver_sqlite_query,
./test_driver_sqlite,
./test_retention_policy,
./test_waku_archive
9 changes: 9 additions & 0 deletions tests/waku_core/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{.used.}

import
./test_message_digest,
./test_namespaced_topics,
./test_peers,
./test_published_address,
./test_sharding,
./test_time
6 changes: 6 additions & 0 deletions tests/waku_filter_v2/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{.used.}

import
./test_waku_client,
./test_waku_filter_protocol,
./test_waku_filter
5 changes: 5 additions & 0 deletions tests/waku_relay/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{.used.}

import
./test_waku_relay,
./test_wakunode_relay
7 changes: 7 additions & 0 deletions tests/waku_rln_relay/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{.used.}

import
./test_rln_group_manager_onchain,
./test_rln_group_manager_static,
./test_waku_rln_relay,
./test_wakunode_rln_relay
7 changes: 7 additions & 0 deletions tests/waku_store/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{.used.}

import
./test_resume,
./test_rpc_codec,
./test_waku_store,
./test_wakunode_store
5 changes: 5 additions & 0 deletions tests/wakunode2/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{.used.}

import
./test_app,
./test_validators
8 changes: 8 additions & 0 deletions tests/wakunode_jsonrpc/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{.used.}

import
./test_jsonrpc_admin,
./test_jsonrpc_debug,
./test_jsonrpc_filter,
./test_jsonrpc_relay,
./test_jsonrpc_store
12 changes: 12 additions & 0 deletions tests/wakunode_rest/test_all.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{.used.}

import
./test_rest_debug_serdes,
./test_rest_debug,
./test_rest_filter,
./test_rest_health,
./test_rest_legacy_filter,
./test_rest_relay_serdes,
./test_rest_relay,
./test_rest_serdes,
./test_rest_store

0 comments on commit 94cd65c

Please sign in to comment.