Skip to content

Commit

Permalink
[FEATURE] add tests for user-install option. ( updates #26 )
Browse files Browse the repository at this point in the history
  • Loading branch information
reactive-firewall committed Mar 7, 2022
1 parent 53e8a8f commit 63055a4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,15 @@ jobs:
make -j1 -f Makefile build ;
- name: Run Tests
id: test-install
run: make -j1 -f Makefile install || true ;
run: make -j1 -f Makefile user-install ;
- name: Test Info
id: test-info
run: python -m setup.py --name --version --license || true ;
- name: Post-Clean
id: post
run: make -j1 -f Makefile clean || true ;
run: |
make -j1 -f Makefile purge || true ;
make -j1 -f Makefile clean || true ;
if: ${{ always() }}


Expand Down Expand Up @@ -145,6 +147,12 @@ jobs:
name: multicast-github-${{ matrix.os }}-${{ matrix.python-version }}
verbose: true
fail_ci_if_error: true
- name: Upload Python ${{ matrix.python-version }} Artifact
uses: actions/upload-artifact@v3
with:
name: Test-Report-${{ matrix.os }}-${{ matrix.python-version }}
path: ./test-reports/
if-no-files-found: ignore
- name: code-climate for ${{ matrix.python-version }}
if: ${{ runner.os }} == "Linux"
shell: bash
Expand Down

0 comments on commit 63055a4

Please sign in to comment.