Skip to content

Commit 4d08fb2

Browse files
authored
Support flake8 5 (#14)
* remove poetry lock file * add support for flake8 version 5 * add typing extensions test dependency
1 parent 90b31b7 commit 4d08fb2

File tree

6 files changed

+66
-841
lines changed

6 files changed

+66
-841
lines changed

.github/workflows/ci-cd.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
- "3.9"
4949
- "3.10"
5050
- "3.11"
51+
env:
52+
- "test-flake85"
53+
- "test-flake86"
5154
steps:
5255
- uses: actions/checkout@v3
5356
- name: Set up Python ${{ matrix.python-version }}
@@ -57,7 +60,14 @@ jobs:
5760
- name: Install tox
5861
run: python -m pip install tox
5962
- name: Run testing
60-
run: tox -e test
63+
run: tox -e ${{ matrix.env }}
64+
tests-passed:
65+
name: Tests Passed
66+
runs-on: ubuntu-latest
67+
needs:
68+
- test
69+
steps:
70+
- run: echo tests passed
6171
release-test-pypi:
6272
runs-on: ubuntu-latest
6373
if: startsWith(github.ref, 'refs/tags/')

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Don't commit lock file
132+
poetry.lock

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [v1.0.8] - 2023-01-04
6+
7+
### Added
8+
9+
- Support for flake8 version 5
10+
511
## [v1.0.7] - 2022-12-29
612

713
### Fixed
@@ -38,3 +44,4 @@
3844
[v1.0.5]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.5
3945
[v1.0.6]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.6
4046
[v1.0.7]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.7
47+
[v1.0.8]: https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.8

0 commit comments

Comments
 (0)