forked from globus/globus-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
28 lines (22 loc) · 722 Bytes
/
Copy pathsetup.cfg
File metadata and controls
28 lines (22 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[isort]
profile = black
[flake8] # black and isort compatible rules
exclude = .git,.tox,__pycache__,.eggs,dist,venv,.venv*,venv27,virtualenv,adoc,build
max-line-length = 88
ignore = W503,W504,E203
[flake8:local-plugins]
extension =
CLI = globus_cli_flake8:Plugin
paths = ./src/globus_cli/
[tool:pytest]
addopts = --cov=src --no-cov-on-fail --timeout 3
filterwarnings =
# warnings are errors, like -Werror
error
[scriv]
version = literal: src/globus_cli/version.py: __version__
categories = Bugfixes, Enhancements, Other
# we're using adoc, we'll produce fragments as 'md' and "fix" later
format = md
output_file = changelog.adoc
entry_title_template = {{ version }} ({{ date.strftime("%%Y-%%m-%%d") }})