-
Notifications
You must be signed in to change notification settings - Fork 2
/
.coveragerc
29 lines (24 loc) · 1.05 KB
/
.coveragerc
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
[run]
omit =
# Ignore config files
src/ai_market_contest/cli/cli_config.py
# Ignore the CLI which can't be tested due to inputs needed
src/ai_market_contest/cli/trainsubcommand.py
src/ai_market_contest/cli/aic.py
src/ai_market_contest/cli/utils/execute_evaluation_routine.py
src/ai_market_contest/cli/utils/config_utils.py
src/ai_market_contest/cli/utils/agent_locator.py
src/ai_market_contest/cli/configs/simulation_config_reader.py
# Ignore graphing which cant't be tested due to TK package errors
src/ai_market_contest/evaluation/graphing.py
# Ignore interface / abstract classes
src/ai_market_contest/training/agent_name_maker.py
src/ai_market_contest/agent.py
src/ai_market_contest/demand_function.py
# Ignore non-deterministic code
src/ai_market_contest/agents/q_agent.py
src/ai_market_contest/agents/sarsa_agent.py
src/ai_market_contest/cli/utils/execute_training_routine.py
src/ai_market_contest/cli/utils/training.py
src/ai_market_contest/training/agent_trainer.py
*/__init__.py