From 71e035c580f77d57fe430bbde92eca4720dd4de8 Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Tue, 17 Jan 2023 12:00:11 -0500 Subject: #226 - installed package dependencies via pip -e --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 0a67ced..c981023 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -21,7 +21,7 @@ jobs: python -m pip install --upgrade pip pip install pytest coverage if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - python setup.py develop + pip install -e . - name: Test with pytest run: | pytest tests \ No newline at end of file -- cgit v1.2.1