mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Add asyncio to the storage backends and most of the codebase. A lot of it merely uses asyncio APIs, but still doesn't actually run several things concurrently internally. Further improvements will be added on top of these changes Thanks to Thomas Grainger (@graingert) for a few useful pointers related to asyncio.
22 lines
424 B
INI
22 lines
424 B
INI
[wheel]
|
|
universal = 1
|
|
|
|
[tool:pytest]
|
|
addopts =
|
|
--tb=short
|
|
--cov-config .coveragerc
|
|
--cov=vdirsyncer
|
|
--cov-report=term-missing
|
|
--no-cov-on-fail
|
|
# filterwarnings=error
|
|
|
|
[flake8]
|
|
application-import-names = tests,vdirsyncer
|
|
extend-ignore =
|
|
E203, # Black-incompatible colon spacing.
|
|
W503, # Line jump before binary operator.
|
|
I100,
|
|
I202
|
|
max-line-length = 88
|
|
exclude = .eggs,build
|
|
import-order-style = smarkets
|