Skip to content

Commit

Permalink
Start testing
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgolec committed May 3, 2024
1 parent 2eab7c9 commit 484734e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ jobs:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python:
- version: "3.8"
toxenv: py38
- version: "3.9"
toxenv: py39
- version: "3.10"
toxenv: py310
- version: "3.11"
Expand Down Expand Up @@ -43,14 +39,14 @@ jobs:
run: tox

- name: Report coverage
if: matrix.python.version == '3.8'
if: matrix.python.version == '3.10'
run: |
coverage combine
coverage report
coverage xml
- name: Upload coverage to Codecov
if: matrix.python.version == '3.8'
if: matrix.python.version == '3.10'
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
'Operating System :: OS Independent',
'Topic :: Office/Business :: Financial :: Investment',
],
python_requires='>=3.8',
python_requires='>=3.10',
install_requires=[
'authlib',
'httpx',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
{py37,py38,py39,py310,py311}
{py310,py311,py312}
coverage

[testenv]
Expand Down

0 comments on commit 484734e

Please sign in to comment.