From 670eb6f2ffdcedddb2be436ebc799259bcae3881 Mon Sep 17 00:00:00 2001 From: cy-xu Date: Tue, 30 Nov 2021 01:12:41 -0800 Subject: [PATCH] optional dependencies support --- .github/workflows/python-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index b7ad01c..49a5f6d 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -36,7 +36,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: install package and dependencies run: | - pip install . + pip install .[develop] - name: Test with pytest run: | pytest