Skip to content

Commit

Permalink
Previous flake8 versions (#4)
Browse files Browse the repository at this point in the history
* remove poetry lock file
* move dependency management to tox
* increment version number
* add tests passed job to add as a required status
  • Loading branch information
jdkandersson authored Jan 4, 2023
1 parent 96b1835 commit 57767b0
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 797 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
env:
- "test-flake85"
- "test-flake86"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -57,7 +60,14 @@ jobs:
- name: Install tox
run: python -m pip install tox
- name: Run testing
run: tox -e test
run: tox -e ${{ matrix.env }}
tests-passed:
name: Tests Passed
runs-on: ubuntu-latest
needs:
- test
steps:
- run: echo tests passed
release-test-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# Don't commit lock file
poetry.lock
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@

## [Unreleased]

## [v1.0.2] - 2023-01-04

### Added

- Support for flake8 version 5

## [v1.0.1] - 2023-01-03

### Fixed

- Fixed definition of a section start to be a non-empty line rather than based
on whether it has a named header like
on whether it has a named header

## [v1.0.0] - 2023-01-02

Expand Down Expand Up @@ -71,3 +77,4 @@
[//]: # "Release links"
[v1.0.0]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.0
[v1.0.1]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.1
[v1.0.2]: https://github.com/jdkandersson/flake8-docstrings-complete/releases/v1.0.2
Loading

0 comments on commit 57767b0

Please sign in to comment.