Rename class for dummy data to avoid pytest-reserved "Test"-prefix causing warnings
"TestData" was a class to define dummy data to test switch_os and switch_arch. Pytest was giving warnings that it couldn't collect test data from that class since it defined __init__
. However, it was not something to test in the first place, so it was renamed to "DummyData" to avoid Pytest to further consider it.
Edited by Christian Dreher