-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from gforcada/drop-py2-py36
Major cleanup: python versions, versions pinned and github actions
- Loading branch information
Showing
11 changed files
with
530 additions
and
587 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Testing | ||
on: [pull_request, push] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
jobs: | ||
test: | ||
name: Testing on | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.9, 3.8, 3.7, pypy-3.9] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Cache packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip-${{ matrix.python-version }}- | ||
- name: pip version | ||
run: pip --version | ||
- name: Install dependencies | ||
run: python -m pip install -r requirements.txt | ||
# formatters | ||
- name: Run pyupgrade | ||
if: matrix.python-version == '3.9' | ||
run: pyupgrade --py37-plus *.py | ||
- name: Run isort | ||
if: matrix.python-version == '3.9' | ||
run: isort --check-only *.py | ||
- name: Run black | ||
if: matrix.python-version == '3.9' | ||
run: black --check --skip-string-normalization *.py | ||
# linters | ||
- name: Lint with bandit | ||
if: matrix.python-version == '3.9' | ||
run: bandit --skip B101 *.py # B101 is assert statements | ||
- name: Lint with codespell | ||
if: matrix.python-version == '3.9' | ||
run: codespell *.rst *.py | ||
- name: Lint with flake8 | ||
if: matrix.python-version == '3.9' | ||
run: flake8 *.py --count --max-complexity=18 --max-line-length=88 --show-source --statistics | ||
- name: Lint with mypy | ||
if: matrix.python-version == '3.9' | ||
run: | | ||
mkdir --parents --verbose .mypy_cache | ||
mypy --ignore-missing-imports --install-types --non-interactive *.py || true | ||
- name: Lint with safety | ||
if: matrix.python-version == '3.9' | ||
run: safety check || true | ||
# tests and coverage | ||
- name: Test | ||
run: pytest run_tests.py --cov --cov-report term-missing | ||
- name: Coverage | ||
run: coveralls --service=github |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
.cache | ||
.coverage | ||
.installed.cfg | ||
.tox | ||
.hypothesis | ||
bin | ||
develop-eggs | ||
include | ||
|
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
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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
bandit | ||
black | ||
codespell | ||
coveralls | ||
flake8-blind-except | ||
flake8-coding | ||
flake8-commas | ||
flake8-bugbear | ||
flake8-comprehensions | ||
flake8-debugger | ||
flake8-deprecated | ||
flake8-isort | ||
flake8-pep3101 | ||
flake8-polyfill | ||
flake8-print | ||
flake8-quotes | ||
flake8-string-format | ||
flake8-todo | ||
futures; python_version < '3.0' | ||
hypothesis; python_version >= '3.6' | ||
hypothesmith; python_version >= '3.6' | ||
mock ; python_version < '3.0' | ||
pytest<5; python_version < '3.0' | ||
pytest>5; python_version >= '3.0' | ||
importlib-metadata; python_version < '3.8' | ||
isort | ||
mypy | ||
pytest | ||
pytest-cov | ||
more-itertools==5.0.0 | ||
zipp ; python_version >= '3.0' | ||
pyupgrade | ||
safety | ||
typed-ast; python_version < '3.8' # dependency of black and mypy | ||
zipp; python_version < '3.8' # dependency of importlib-metadata |
Oops, something went wrong.