Additional CI workflows (#16)

Reviewed-on: deep-stack/laconic2d#16
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
2024-03-07 09:11:53 +00:00
committed by ashwin
parent 4e4e9caccf
commit 33b6cce362
15 changed files with 213 additions and 16 deletions
+2 -5
View File
@@ -130,19 +130,16 @@ func (ets *E2ETestSuite) createAuctionAndBid(createAuction, createBid bool) stri
return auctionId
}
func (ets *E2ETestSuite) cleanupBidFiles() error {
func (ets *E2ETestSuite) cleanupBidFiles() {
matches, err := filepath.Glob(fmt.Sprintf("%s-*.json", bidderAccount))
if err != nil {
ets.T().Errorf("Error matching bidder files: %v\n", err)
return err
}
for _, match := range matches {
err := os.Remove(match)
if err != nil {
return err
ets.T().Errorf("Error removing bidder file: %v\n", err)
}
}
return nil
}