PyTest - Test Organization
What will happen if you run
pytest -m "not slow" on the following code?
```python
import pytest
@pytest.mark.slow
def test_download():
assert True
def test_upload():
assert True
```
