diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 7fc070c..1a32458 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -95,5 +95,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install local package run: make install-local-package + - name: Install requirements + run: make install-test-requirements - name: Test package run: make test-package \ No newline at end of file diff --git a/Makefile b/Makefile index c2ead1e..7b601ab 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ install-package-uploader: install-local-package: $(PIP) install -e . +install-test-requirements: + $(PIP) install unittest-extensions + test-package: $(INTERPRETER) -m unittest discover -v src/property_utils/tests/