forked from VOLTTRON/volttron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
71 lines (68 loc) · 3.4 KB
/
pytest.ini
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[pytest]
timeout = 300
# --strict is deprecated using strict-markers instead
addopts = --strict-markers -rsxX -v --continue-on-collection-errors
#--full-trace
norecursedirs = \
.git env scripts volttron.egg-info config docs \
examples volttron_data deprecated services/contrib/* services/unsupported/*
markers =
actuator: Tests for actuator agent
actuator_pubsub: Test for actuator agent.
agent: Testing for core agent operations.
alert: Testing alerts from the health subsystem.
auth: Testing for auth based code.
control: Control service/aip tests.
config_store: Configuration store tests.
dev: Mark for currently developing test.
drivenagent: Tests for driven agent
forwarder: Tests for forwardhistorian
gevent: Functionality tests for gevent.
historian: Test cases for historian.
health: Testing the health subsystem.
heartbeat: Testing the heartbeat subsystem.
keystore: Test the keystore and known-hosts store.
mongodb: Tests for mongodb related test code.
pa: Tests for the platform agent.
driver: Tests for platform driver functionality.
driver_unit: Unit tests for platform driver functionality.
slow: Mark tests that run slowly.
sqlhistorian: Mark for only sql historian tests.
subsystems: Testing subsystems.
web: Tests for web and web services.
wrapper: Test the platformwrapper test code.
vc: Tests associated with volttron central agent.
vcp: Tests associated with the volttron central platform agent.
zmq: Tests for zmq
aggregator: Run aggregate historian tests
sql_aggregator: Run aggregate historian tests
mongo_aggregator: Run aggregate historian tests
packaging: Run packaging tests
market: Run the market service agent and base market agent tests
tagging: Tagging service tests
alert: Alerter agent tests
multiplatform: Tests for multiplatforn functionality
weather: Weather agent tests
rmq_pubsub: rmq pubsub test
ecorithm: Tests associated with ecorithm's agents
weather2: new weather agent tests
darksky: darksky weather agent tests
pubsub: pubsub tests for zeromq and rabbitmq
rmq_reconnect: rabbitmq reconnect tests
rmq_shutdown: rabbitmq shutdown tests
secure: Test platform and agents with secure platform options
rpc: Tests for RPC
mysqlfuncts: level one integration tests for mysqlfuncts
postgresqlfuncts_timescaledb: level one integreation tests for timescaledb
postgresqlfuncts: level one integration tests for postgresqlfuncts
dbutils: test all the level one integrations tests for dbfuncts classes
mongoutils: level one integration tests for mongoutils
sqlitefuncts: level one integration tests for sqlitefuncts
unit: Run all unit/level one integration tests
influxdbutils: level one integration tests for influxdb
federation: Tests for rabbitmq federation communication
shovel: Tests for rabbitmq shovel communication
contrib: tests for community-contributed agents
# To support testing asyncio code with pytest (e.g. OpenADRVenAgent), we need to set this configuration option.
# See documentation on this configuration option at https://pypi.org/project/pytest-asyncio/
asyncio_mode = auto