Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 38d6c70

Browse files
committed
Run eir interpreter tests in CircleCI
Previously, only the fibonacci demo was run as a test and not the actual tests.
1 parent bf928a1 commit 38d6c70

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,10 @@ jobs:
280280
steps:
281281
- attach_workspace:
282282
at: .
283+
- run:
284+
name: Run all tests
285+
working_directory: "liblumen_eir_interpreter"
286+
command: cargo test --locked
283287
- run:
284288
name: Fibonacci
285289
working_directory: "liblumen_eir_interpreter"

liblumen_eir_interpreter/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ mod tests {
183183
}
184184

185185
#[test]
186+
#[ignore]
186187
fn nonexistent_function_call() {
187188
&*VM;
188189

0 commit comments

Comments
 (0)