mirror of
https://github.com/progval/irctest.git
synced 2025-04-08 00:09:46 +00:00
.github
data
irctest
patches
.gitignore
.pre-commit-config.yaml
CONTRIBUTING.md
LICENSE
Makefile
README.md
conftest.py
make_workflows.py
mypy.ini
pyproject.toml
pytest.ini
report.py
requirements.txt
setup.cfg
workflows.yml
* Add testWhoisNumerics, to check Modern exhaustively covers known numerics * ircu2: Workaround for server name in testWhoisNumerics. * testWhoisUser: Work around ircu2 restrictions on nick and username * testWhoisNumerics: Add variant with authenticated user * testWhoisNumerics: Add support for RPL_AWAY and RPL_WHOISSPECIAL * testWhoisNumerics: Add variant where the WHOIS sender opers up first * testWhoisUser: Also test with targets * inspircd: Fix oper configuration * Fix RPL_WHOISACTUALLY matching for Unreal.
8 lines
274 B
INI
8 lines
274 B
INI
[flake8]
|
|
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
|
|
# E231: missing whitespace after ','
|
|
# E501: line too long
|
|
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
|
|
ignore = E203,E231,E501,W503
|
|
max-line-length = 88
|