-
Notifications
You must be signed in to change notification settings - Fork 28
/
pytest.ini
32 lines (28 loc) · 929 Bytes
/
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
[pytest]
addopts = -ra -vvv --cov --cov-report=term-missing --cov-report=xml
#addopts = -vvv --capture=no
pythonpath =
dist-packages
src/lib
src
filterwarnings =
ignore::DeprecationWarning
markers =
basic: Basic tests.
esp32: Tests for generic ESP32.
pycom: Tests for Pycom MicroPython.
wipy: Tests for Pycom WiPy.
cpython: Tests for CPython.
telemetry: Tests with Telemetry.
mqtt: Tests for MQTT uplink.
http: Tests for HTTP uplink.
lorawan: Tests for LoRaWAN uplink and downlink.
docker: Tests based on Docker.
sleep: Tests for sleeping.
sensors: Tests for sensors.
gprs: Tests for GPRS.
micropython: Tests for MicroPython.
sbc: Tests for single-board computers.
httpmock: Testing mocked HTTP communication in different flavours.
urequests: Testing the "urequests" module.
spot: Marker to designate the spot being currently worked on.