inkdevhub / drink

De-chained Ready-to-play ink! playground
Apache License 2.0
69 stars 15 forks source link

bug: unable to run the `examples/*.rs` tests, stucks at lock file building stage #124

Closed chungquantin closed 1 month ago

chungquantin commented 1 month ago

To reproduce, go to any examples/*.rs file and run cargo test, the terminal will hang forever

➜ cargo test
   Compiling mocking v0.1.0 (/Users/chungquantin/Developer/pop-network/pop-drink/examples/mocking)
 [==] Checking clippy linting rules
    Blocking waiting for file lock on build directory
    Building [=======================> ] 657/658: mocking(test)    
pmikolajczyk41 commented 1 month ago

yeah, that's a known issue; you have to run with --release flag

chungquantin commented 1 month ago

@pmikolajczyk41 Thanks it works now.