Skip to content

Commit 2cdbc54

Browse files
authored
Merge pull request #12 from seamile/dev
0.2.7
2 parents ddac147 + 79db194 commit 2cdbc54

22 files changed

+2689
-825
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020

2121
steps:
@@ -34,8 +34,8 @@ jobs:
3434
3535
- name: Lint with flake8
3636
run: |
37-
flake8 jsonfmt.py --count --select=E9,F63,F7,F82 --show-source --statistics
38-
flake8 jsonfmt.py --count --exit-zero --max-complexity=10 --max-line-length=90 --statistics
37+
flake8 jsonfmt/*.py --count --select=E9,F63,F7,F82 --show-source --statistics
38+
flake8 jsonfmt/*.py --count --exit-zero --max-complexity=15 --max-line-length=120 --statistics
3939
4040
- name: Test with pytest
41-
run: pytest test/test.py
41+
run: pytest test/

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
pip install -r requirements.txt
3434
3535
- name: Test with pytest
36-
run: pytest test/test.py
36+
run: pytest test/
3737

3838
- name: Build package
3939
run: python -m build

0 commit comments

Comments
 (0)