From 777becda6b87014dea8b053ff0c91ee3c1670d5a Mon Sep 17 00:00:00 2001 From: Alan Ji Date: Fri, 4 Aug 2023 02:17:48 +0800 Subject: [PATCH] fix typo to ensure `make test-examples` work correctly (#4329) fix typo to ensure `make test-examples` work correctly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 94af6d2f12..3394b20d14 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ test: # Run tests for examples test-examples: - python -m pytest -n auto --dist=loadfile -s -v ./examples/pytorch/ + python -m pytest -n auto --dist=loadfile -s -v ./examples/ # Release stuff