Currently unit tests and integration tests are mixed. Two solutions: - add @pytest.mark.integtest to the integration tests, this makes it possible to first run the unit tests - Put in seperate folder and run seperately, this is even better, since this is a easy way for a user to check the way the code should be run. This folder should generally contain the same code as the readme. Good related stackoverflow: https://stackoverflow.com/questions/54898578/how-to-keep-unit-tests-and-integrations-tests-separate-in-pytest
Currently unit tests and integration tests are mixed.
Two solutions:
Good related stackoverflow:
https://stackoverflow.com/questions/54898578/how-to-keep-unit-tests-and-integrations-tests-separate-in-pytest