Skip to content

Commit

Permalink
Re-add all unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Mar 2, 2024
1 parent a4c8c1f commit 065418a
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Linting and testing

# on: [pull_request]
on: push
on: [pull_request]

jobs:
test:
Expand All @@ -10,8 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
version: ["3.11"]
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- name: Check out code
Expand All @@ -30,16 +28,16 @@ jobs:
- name: Install app
run: pip install .

# - name: Lint with Flake8
# run: flake8 --max-line-length=120 .
- name: Lint with Flake8
run: flake8 --max-line-length=120 .

# - name: Run unit tests
# run: |
# pytest \
# --cov=tes/ \
# --cov-branch \
# --cov-report=term-missing \
# --cov-fail-under=99
- name: Run unit tests
run: |
pytest \
--cov=tes/ \
--cov-branch \
--cov-report=term-missing \
--cov-fail-under=99
- name: Test with Funnel
run: |
Expand Down

0 comments on commit 065418a

Please sign in to comment.