Skip to content

Commit

Permalink
update: automated tests file
Browse files Browse the repository at this point in the history
  • Loading branch information
ForceFledgling committed Nov 10, 2023
1 parent 5f40e2c commit d7c3e49
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/autotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Run Tests
on: [push, pull_request]

jobs:
test:
test-linux:
runs-on: ubuntu-latest

strategy:
Expand All @@ -19,12 +19,14 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install dependencies
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Run tests
Expand All @@ -49,12 +51,15 @@ jobs:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install dependencies
- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
python -m pytest tests/
python -m pytest tests/

0 comments on commit d7c3e49

Please sign in to comment.