Skip to content

Commit

Permalink
feat: add ignored rust tests to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo committed May 18, 2021
1 parent 68614cf commit d3b301c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,11 @@ commands:
no_output_timeout: 90m
- run:
name: Run the Rust tests
command: cd rust && FIL_PROOFS_PARAMETER_CACHE="${HOME}/filecoin-proof-parameters/" RUST_LOG=info cargo test --all --release -- --test-threads 1&& cd ..
command: cd rust && FIL_PROOFS_PARAMETER_CACHE="${HOME}/filecoin-proof-parameters/" RUST_LOG=info cargo test --all --release -- --test-threads 1 && cd ..
no_output_timeout: 90m
- run:
name: Run the Rust ignored tests
command: cd rust && FIL_PROOFS_PARAMETER_CACHE="${HOME}/filecoin-proof-parameters/" RUST_LOG=info cargo test --all --release -- --test-threads 1 --ignored && cd ..
no_output_timeout: 90m
- run:
name: Run the Go tests
Expand Down

0 comments on commit d3b301c

Please sign in to comment.