From 2fc0ec608ccd451097a589dafd1be6de49bc2cf9 Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Tue, 10 Aug 2021 18:03:36 +0200 Subject: [PATCH] Woops, it's go not rust --- src/dev/golang/testing.md | 8 +++++++- src/dev/rust/testing.md | 6 ------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/dev/golang/testing.md b/src/dev/golang/testing.md index e42d7b5..c77b5e5 100644 --- a/src/dev/golang/testing.md +++ b/src/dev/golang/testing.md @@ -100,4 +100,10 @@ if testing.Short() { ```shell go test github.com/go/pkg/package --short -``` \ No newline at end of file +``` + +## Cleanup test cache + +```shell +go clean -testcache +``` diff --git a/src/dev/rust/testing.md b/src/dev/rust/testing.md index f67bc2f..a051617 100644 --- a/src/dev/rust/testing.md +++ b/src/dev/rust/testing.md @@ -13,9 +13,3 @@ cargo test -- --nocapture ```shell cargo test -- --no-fail-fast ``` - -## Cleanup test cache - -```shell -go clean -testcache -```