Skip to content

Commit

Permalink
Makefile: remove sleeps
Browse files Browse the repository at this point in the history
  • Loading branch information
creamwhip committed Jan 29, 2022
1 parent 8488daf commit 68d2ee8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ test_unit_level0:
@echo "--> Running Unit Tests - Level 0"
@echo "!!! WARNING: This will take a long time :)"
@echo "!!! WARNING: This will delete fixtures :("
sleep 10
go clean -testcache
rm -f ./test/_ecdsa_fixtures/*json
rm -f ./test/_eddsa_fixtures/*json
Expand All @@ -53,23 +52,20 @@ test_unit_level0:
test_unit: test_unit_level0
@echo "--> Running Unit Tests - Level 1"
@echo "!!! WARNING: This will take a long time :)"
sleep 2
go test -timeout 60m $(UT_PACKAGES_LEVEL_1)

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

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

test:
Expand Down

0 comments on commit 68d2ee8

Please sign in to comment.