-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Create dedicated pytest list - Add some new entries to the python list: - 'checkable' comes from '@runtime_checkable', a decorator introduced. in python3.8 and also available in typing_extensions. - 'exc' comes from the default argument names for '__exit__' functions. - 'tokenize' is a stdlib module used by this package. - 'unittest' is a stdlib module. - Remove a couple of duplicate entries from the technical list. - Add some new entries to the technical list: - 'filesystem' should be obvious. - 'func' is common shorthand for 'function'. - 'lua' is the name of an embeddable programming language. - 'runtime' is a common word to differentiate from e.g. compile-time. It's also used in the '@runtime_checkable' decorator. - 'ttl' stands for Time-to-Live, and is a common acronym seen in many places, including DNS and caching. - 'util' is a commonly used name in programming for a file full of utility functions. - Removed some entries from this package's custom allowlist that are already specified elsewhere.
- Loading branch information
1 parent
58bd10e
commit 98aa53e
Showing
5 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
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,7 @@ | ||
autouse | ||
getfixturevalue | ||
param | ||
parametrize | ||
params | ||
usefixtures | ||
xfail |
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,9 +1,6 @@ | ||
Aquilina | ||
compat | ||
config | ||
flake8dir | ||
fp | ||
hacky | ||
lineno | ||
parametrize | ||
tokenize |