Skip to content

Commit 35afac1

Browse files
authored
Rename flake8 step/env to lint (#242)
going to add some more tools (isort & black) so making this step/env a more generic name.
1 parent 2502f77 commit 35afac1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
run: |
5151
pip install -U setuptools
5252
pip install -U "tox>=3.23.0,<4"
53-
- run: tox -e flake8
53+
- run: tox -e lint

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ matrix:
1212
include:
1313
# Linting
1414
- python: 3.8
15-
env: TOXENV=flake8
15+
env: TOXENV=lint
1616
# CPython 3.6
1717
- python: 3.6
1818
env: TOXENV=py36-base

Diff for: tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 3.4.0
33
envlist =
44
py{36,37,38,39,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
5-
flake8
5+
lint
66
skip_missing_interpreters = True
77

88
[gh-actions]
@@ -55,7 +55,7 @@ extras =
5555
pycryptodome: pycryptodome
5656
compatibility: {[testenv:compatibility]extras}
5757

58-
[testenv:flake8]
58+
[testenv:lint]
5959
basepython = python3.8
6060
skip_install= True
6161
deps =

0 commit comments

Comments
 (0)