Skip to content

Commit

Permalink
Update python-package.yml
Browse files Browse the repository at this point in the history
Increment node version to V5 and adjust nose2 run statement
  • Loading branch information
dalymople authored May 23, 2024
1 parent 145a6b7 commit d8992b7
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -21,13 +20,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with nosetest
run: |
nosetests
- name: Test with nose2
run: nose2 --verbose --with-coverage --coverage-report html --coverage-report xml

0 comments on commit d8992b7

Please sign in to comment.