forked from ESMCI/cime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
26 lines (22 loc) · 676 Bytes
/
setup.cfg
File metadata and controls
26 lines (22 loc) · 676 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
[metadata]
name = CIME
version = 0.0.1
[options]
packages = find:
include_package_data = True
[options.entry_points]
console_scripts =
create_clone = CIME.scripts.create_clone:_main_func
create_newcase = CIME.scripts.create_newcase:_main_func
create_test = CIME.scripts.create_test:_main_func
query_config = CIME.scripts.query_config:_main_func
query_testlists = CIME.scripts.query_testlists:_main_func
[tool:pytest]
junit_family=xunit2
addopts = --cov=CIME --cov-report term-missing --cov-report html:test_coverage/html --cov-report xml:test_coverage/coverage.xml -s
python_files = test_*.py
testpaths =
CIME/tests
[coverage:report]
omit =
CIME/tests/*