1
0
forked from ROMEO/nexosim

Exclude non-loom test when asynchronix_loom set

This commit is contained in:
Serge Barral
2023-08-14 14:18:46 +02:00
parent 484b74b3ec
commit 6ffa685c90
2 changed files with 9 additions and 0 deletions

View File

@ -17,6 +17,7 @@ A high performance asychronous compute framework for system simulation.
"""
categories = ["simulation", "aerospace", "science"]
keywords = ["simulation", "discrete-event", "systems", "cyberphysical", "real-time"]
autotests = false
[features]
# API-unstable public exports meant for external test/benchmarking; development only.
@ -44,3 +45,7 @@ waker-fn = "1.1"
futures-util = "0.3"
futures-channel = "0.3"
futures-executor = "0.3"
[[test]]
name = "integration"
path = "tests/tests.rs"

View File

@ -0,0 +1,4 @@
#[cfg(not(asynchronix_loom))]
mod model_scheduling;
#[cfg(not(asynchronix_loom))]
mod simulation_scheduling;