Skip to content

Commit

Permalink
Enable tests on PR (#31)
Browse files Browse the repository at this point in the history
* Enable tests on PR

* Run coverage to find dumb mistakes
  • Loading branch information
squishykid committed Feb 26, 2021
1 parent 81f7e9e commit f2650d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: tests

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down Expand Up @@ -29,4 +29,4 @@ jobs:
pylint -d 'C0111' solax tests
- name: Test with pytest
run: |
pytest .
pytest --cov=solax --cov-fail-under=100 --cov-branch --cov-report=term-missing .

0 comments on commit f2650d1

Please sign in to comment.