From 6e216bc81cf8e2b907eb675206cf5c03e1851c8e Mon Sep 17 00:00:00 2001 From: Jean Giard <1167353+JGiard@users.noreply.github.com> Date: Fri, 19 Jul 2024 10:07:28 +0200 Subject: [PATCH] Add missing test dependency --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba56a91..b0c306e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest + python -m pip install pytest assertpy python -m pip install . if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest