You can want to run all tests, simply use pytest or pytest.\tests\test_x.py without -m option.
If you intend to run tests that are marked, you have to write your test functions with right marker
import pytest
@pytest.mark.test
def test_case():
assert True
After adding the marker, running pytest -m test will include those tests
You can also check all the exiting markers in your tests by running pytest –markers