OpenSlides/server/setup.cfg
FinnStutzenstein 2bcab5d098
Repository restructure
- moved all server related things into the folder `server`, so this
configuration is parallel to the client.
- All main "services" are now folders in the root directory
- Added Dockerfiles to each service (currently server and client)
- Added a docker compose configuration to start everything together.
Currently there are heavy dependencies into https://github.com/OpenSlides/openslides-docker-compose
- Resturctured the .gitignore. If someone needs something excluded,
please add it to the right section.
- Added initial build setup with Docker and docker-compose.
- removed setup.py. We won't deliver OpenSlides via pip anymore.
2020-08-21 08:11:13 +02:00

40 lines
786 B
INI

[coverage:run]
source = openslides
omit =
openslides/core/management/commands/*.py
openslides/users/management/commands/*.py
[coverage:html]
directory = personal_data/tmp/htmlcov
[flake8]
max_line_length = 150
[isort]
include_trailing_comma = true
multi_line_output = 3
lines_after_imports = 2
combine_as_imports = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_first_party = openslides
known_third_party = pytest,onelogin
[mypy]
ignore_missing_imports = true
strict_optional = true
check_untyped_defs = true
[mypy-openslides.utils.*]
disallow_untyped_defs = true
[mypy-openslides.core.config]
disallow_untyped_defs = true
[tool:pytest]
DJANGO_SETTINGS_MODULE = tests.settings
testpaths = tests/
filterwarnings =
ignore:RemovedInDjango30Warning