From ab20c1eabb93dc9578d753547373cb0a1f0e0f3c Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Mon, 30 Oct 2023 23:41:18 -0300 Subject: [PATCH] fix: skip benchmarks --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58bab5a..e3129c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,4 +35,4 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | - pytest -vv + pytest -m "not benchmark" -vv