Reading http://doc.pytest.org/en/latest/example/markers.html I see the example of including or excluding certain python tests based on a mark.
Including:
pytest -v -m webtest
Excluding:
pytest -v -m "not webtest"
What if I would like to specify several marks for both include and exclude?