Skip to content

Commit 68d2ee8

Browse files
committed
Makefile: remove sleeps
1 parent 8488daf commit 68d2ee8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ test_unit_level0:
4343
@echo "--> Running Unit Tests - Level 0"
4444
@echo "!!! WARNING: This will take a long time :)"
4545
@echo "!!! WARNING: This will delete fixtures :("
46-
sleep 10
4746
go clean -testcache
4847
rm -f ./test/_ecdsa_fixtures/*json
4948
rm -f ./test/_eddsa_fixtures/*json
@@ -53,23 +52,20 @@ test_unit_level0:
5352
test_unit: test_unit_level0
5453
@echo "--> Running Unit Tests - Level 1"
5554
@echo "!!! WARNING: This will take a long time :)"
56-
sleep 2
5755
go test -timeout 60m $(UT_PACKAGES_LEVEL_1)
5856

5957
test_unit_race_level0:
6058
@echo "--> Running Unit Tests (with Race Detection) - Level 0"
6159
@echo "!!! WARNING: This will take a long time :)"
6260
@echo "!!! WARNING: This will delete fixtures :("
6361
go clean -testcache
64-
sleep 10
6562
rm -f ./test/_ecdsa_fixtures/*json
6663
rm -f ./test/_eddsa_fixtures/*json
6764
go test -timeout 50m -race $(UT_PACKAGES_LEVEL_0)
6865

6966
test_unit_race: test_unit_race_level0
7067
@echo "--> Running Unit Tests (with Race Detection) - Level 1"
7168
@echo "!!! WARNING: This will take a long time :)"
72-
sleep 2
7369
go test -timeout 60m -race $(UT_PACKAGES_LEVEL_1)
7470

7571
test:

0 commit comments

Comments
 (0)