From 5e835f7c47f70342c6c5b93939adfc5b149f90b2 Mon Sep 17 00:00:00 2001 From: Ruben Selander <77073569+Reversehobo@users.noreply.github.com> Date: Mon, 15 Jan 2024 21:28:46 +0100 Subject: [PATCH] Update pip install command to include test dependencies --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index f18026f..740c461 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -19,7 +19,7 @@ jobs: - name: Install package and dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest + python -m pip install .[test] - name: Run all tests in the tests folder with pytest run: | python -m pytest tests