Skip to content

Commit

Permalink
fixup! Add test-package workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxcode123 committed Feb 15, 2024
1 parent 4df2130 commit 69f570f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down

0 comments on commit 69f570f

Please sign in to comment.