-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to running tests with GitHub Actions.
Update supported Python versions.
- Loading branch information
1 parent
fe21114
commit b08cdb8
Showing
5 changed files
with
49 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
test: | ||
name: Run tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: ["3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Install tox and any other packages | ||
run: pip install tox | ||
- name: Run tox | ||
run: tox run -e lint,py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
[zest.releaser] | ||
create-wheel = yes | ||
|
||
[aliases] | ||
test=pytest | ||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[flake8] | ||
max-line-length = 120 | ||
|
||
[isort] | ||
force_single_line = true | ||
line_length = 120 | ||
lines_between_types = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[tox] | ||
requires = tox>=4 | ||
env_list = lint, py{39,310,311,312} | ||
|
||
[testenv] | ||
description = run unit tests | ||
deps = | ||
flask | ||
pytest | ||
commands = pytest . | ||
|
||
[testenv:lint] | ||
description = run linters | ||
skip_install = true | ||
deps = | ||
flake8 | ||
commands = | ||
flake8 |