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 29 30 31 32 33 34 35 36 37 38
|
# Helper file to handle all configs
[coverage:run]
# .coveragerc to control coverage.py and pytest-cov
omit =
qcengine/_version.py
[tool:pytest]
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
markers =
long
slow: marks tests as slow (deselect with '-m "not slow"')
smoke
[tool:isort]
line_length=120
skip=__init__.py
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
multi_line_output=3
[flake8]
# Flake8, PyFlakes, etc
max-line-length = 119
[versioneer]
# Automatic version numbering scheme
VCS = git
style = pep440
versionfile_source = qcengine/_version.py
versionfile_build = qcengine/_version.py
tag_prefix = ''
[aliases]
test=pytest
|