mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
debug ci differences
This commit is contained in:
parent
68fd0433b6
commit
4b4247427b
@ -53,7 +53,7 @@ jobs:
|
||||
- run:
|
||||
name: Build and run tests
|
||||
no_output_timeout: 30m
|
||||
command: cargo test --all
|
||||
command: cargo test --all -- --nocapture
|
||||
- persist_to_workspace:
|
||||
root: ~/
|
||||
paths: project/
|
||||
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -116,7 +116,7 @@ jobs:
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: test
|
||||
args: --all --features ci_skip
|
||||
args: --all --features ci_skip -- --nocapture
|
||||
env:
|
||||
CARGO_INCREMENTAL: "0"
|
||||
|
||||
|
@ -211,6 +211,13 @@ impl Namespace for CompileNamespace {
|
||||
output,
|
||||
});
|
||||
}
|
||||
if test.name.contains("reverse") {
|
||||
println!(
|
||||
"debug print initial ast {:?}",
|
||||
Ast::from_json_file("/tmp/output/initial_ast.json".into())
|
||||
.unwrap_or_else(|_| Ast::new(Program::new("Error reading initial theorem.".to_string())))
|
||||
);
|
||||
}
|
||||
|
||||
let initial_ast: String = hash(
|
||||
Ast::from_json_file("/tmp/output/initial_ast.json".into())
|
||||
|
Loading…
Reference in New Issue
Block a user