forked from LedgerHQ/app-openpgp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconftest.py
More file actions
26 lines (18 loc) · 770 Bytes
/
Copy pathconftest.py
File metadata and controls
26 lines (18 loc) · 770 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
# from ragger.conftest import configuration
###########################
### CONFIGURATION START ###
###########################
# You can configure optional parameters by overriding the value of
# ragger.configuration.OPTIONAL_CONFIGURATION
# Please refer to ragger/conftest/configuration.py for their descriptions and accepted values
#########################
### CONFIGURATION END ###
#########################
# Pull all features from the base ragger conftest using the overridden configuration
pytest_plugins = ("ragger.conftest.base_conftest", )
##########################
# CONFIGURATION OVERRIDE #
##########################
BACKENDS = ["speculos"]
def pytest_addoption(parser):
parser.addoption("--full", action="store_true", help="Run full tests")