PyTest - Test Organization
You have tests marked as follows:
```python
@pytest.mark.smoke
@pytest.mark.api
def test_api_smoke():
assert True
@pytest.mark.smoke
def test_ui_smoke():
assert True
@pytest.mark.api
def test_api():
assert True
```
How would you run all smoke tests except those marked as api?
