Skip to content

Commit

Permalink
move unit tests from nose tests to pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
vvb committed Nov 28, 2024
1 parent 0991abf commit 3628e87
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Assumes you have a requirements.txt
pip install -r requirements.txt
pip install -r requirements_dev.txt
- name: Run tests
run: |
Expand Down

0 comments on commit 3628e87

Please sign in to comment.